2018-05-09 19:53:12 +02:00
|
|
|
{% extends "base" %}
|
2018-04-23 11:52:44 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block title %}
|
|
|
|
Login
|
|
|
|
{% endblock title %}
|
2018-04-23 11:52:44 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block content %}
|
|
|
|
<h1>Login</h1>
|
2018-06-04 20:21:43 +02:00
|
|
|
{% if message %}
|
2018-06-11 12:33:32 +02:00
|
|
|
<p>{{ message }}</p>
|
2018-06-04 20:21:43 +02:00
|
|
|
{% endif %}
|
2018-05-09 19:53:12 +02:00
|
|
|
<form method="post">
|
|
|
|
<label for="email_or_name">Username or email</label>
|
|
|
|
<input name="email_or_name">
|
|
|
|
|
|
|
|
<label for="password">Password</label>
|
|
|
|
<input type="password" name="password">
|
|
|
|
|
|
|
|
<input type="submit" value="Login"/>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|