what2watch/templates/index.html

27 lines
584 B
HTML
Raw Normal View History

{% extends "base.html" %}
2023-07-09 04:26:28 +00:00
{% block title %}Welcome to What 2 Watch, Bish{% endblock %}
{% block content %}
2023-07-09 04:26:28 +00:00
<h1>Welcome to What 2 Watch</h1>
{% match user %}
{% when Some with (usr) %}
<p>
Hello, {{ usr.username }}! It's nice to see you. <a href="watches">Let's get watchin'!</a>
</p>
</br>
<p>
<form action="/logout" enctype="application/x-www-form-urlencoded" method="post">
<input type="submit" value="sign out?">
</form>
</p>
{% else %}
<p>
Heya, why don't you <a href="/login">log in</a> or <a href="/signup">sign up</a>?
</p>
{% endmatch %}
{% endblock %}