41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Home</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}" />
|
|
</head>
|
|
<body>
|
|
<div class="site-shell">
|
|
<header class="topbar">
|
|
<a href="{{ url_for('main.home') }}" class="brand">Chess</a>
|
|
<nav class="topnav">
|
|
<a href="{{ url_for('main.home') }}" class="active">Home</a>
|
|
<a href="{{ url_for('main.play') }}">Play</a>
|
|
<a href="{{ url_for('main.friends') }}">Friends</a>
|
|
</nav>
|
|
<div class="profile-pill">{{ current_user.username }}</div>
|
|
</header>
|
|
|
|
<main class="page-wrap">
|
|
<h1>Welcome back, {{current_user.username}}</h1>
|
|
<div class="cta-row">
|
|
<a href="{{ url_for('main.play') }}" class="btn btn-primary"
|
|
>Start a game</a
|
|
>
|
|
<a href="{{ url_for('main.friends') }}" class="btn btn-secondary"
|
|
>Open friends</a
|
|
>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|