Plume/templates/session/login.tera
Madeorsk 12d85c6ec5 New design
+ New design!
+ Added link for author name in comments.
+ Added author full name in comments.
* Fixed label / input relation linking.
2018-05-19 16:29:42 +02:00

18 lines
437 B
Text

{% extends "base" %}
{% block title %}
Login
{% endblock title %}
{% block content %}
<h1>Login</h1>
<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 %}