30 lines
822 B
HTML
30 lines
822 B
HTML
{% extends "base_app.html" %} {% set active_page = 'home' %} {% block title
|
|
%}Home{% endblock %} {% block content %}
|
|
<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
|
|
>
|
|
<a href="{{ url_for('main.games_history') }}" class="btn btn-secondary"
|
|
>Past games</a
|
|
>
|
|
</div>
|
|
<div class="home-join">
|
|
<form
|
|
class="quick-join-form"
|
|
action="{{ url_for('main.play') }}"
|
|
method="get"
|
|
>
|
|
<input
|
|
type="text"
|
|
name="code"
|
|
maxlength="6"
|
|
placeholder="Game code"
|
|
aria-label="Join by code"
|
|
/>
|
|
<button class="btn btn-secondary" type="submit">Join</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|