This commit is contained in:
Matthieu
2018-06-12 13:57:30 +02:00
48 changed files with 978 additions and 183 deletions
+21
View File
@@ -0,0 +1,21 @@
{% extends "base" %}
{% block title %}
Login
{% endblock title %}
{% block content %}
<h1>Login</h1>
{% if message %}
<p>{{ message }}</p>
{% endif %}
<form method="post">
<label for="email_or_name">Username or email</label>
<input type="text" id="email_or_name" name="email_or_name" />
<label for="password">Password</label>
<input type="password" id="password" name="password" />
<input type="submit" value="Login" />
</form>
{% endblock content %}