Plume/templates/session/login.html.tera

22 lines
487 B
Plaintext
Raw Normal View History

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>
{% if message %}
2018-06-11 12:33:32 +02:00
<p>{{ message }}</p>
{% endif %}
2018-05-09 19:53:12 +02:00
<form method="post">
<label for="email_or_name">Username or email</label>
<input type="text" id="email_or_name" name="email_or_name" />
2018-05-09 19:53:12 +02:00
<label for="password">Password</label>
<input type="password" id="password" name="password" />
2018-05-09 19:53:12 +02:00
<input type="submit" value="Login" />
2018-05-09 19:53:12 +02:00
</form>
{% endblock content %}