26 lines
583 B
HTML
26 lines
583 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Welcome to What 2 Watch, Bish{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<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>
|
|
{% when None %}
|
|
<p>
|
|
Heya, why don't you <a href="/login">log in</a> or <a href="/signup">sign up</a>?
|
|
</p>
|
|
{% endmatch %}
|
|
|
|
{% endblock %}
|