Plume/templates/session/login.html.tera

22 lines
446 B
Text
Raw Normal View History

2018-05-09 17:53:12 +00:00
{% extends "base" %}
2018-04-23 09:52:44 +00:00
2018-05-09 17:53:12 +00:00
{% block title %}
Login
{% endblock title %}
2018-04-23 09:52:44 +00:00
2018-05-09 17:53:12 +00:00
{% block content %}
<h1>Login</h1>
{% if message %}
<p>{{ message | escape }}</p>
{% endif %}
2018-05-09 17:53:12 +00: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 %}