Plume/templates/session/login.tera

19 lines
437 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>
<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 %}