Plume/templates/session/login.html.tera

22 lines
497 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 %}
2018-06-17 17:26:15 +02:00
{{ "Login" | _ }}
2018-05-09 19:53:12 +02:00
{% endblock title %}
2018-04-23 11:52:44 +02:00
2018-05-09 19:53:12 +02:00
{% block content %}
2018-06-17 17:26:15 +02:00
<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">
2018-06-17 17:26:15 +02:00
<label for="email_or_name">{{ "Username or email" | _ }}</label>
2018-05-09 19:53:12 +02:00
<input name="email_or_name">
2018-06-17 17:26:15 +02:00
<label for="password">{{ "Password" | _ }}</label>
2018-05-09 19:53:12 +02:00
<input type="password" name="password">
2018-06-17 17:26:15 +02:00
<input type="submit" value="{{ "Login" | _ }}"/>
2018-05-09 19:53:12 +02:00
</form>
{% endblock content %}