mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
21 lines
535 B
Text
21 lines
535 B
Text
{% extends "base" %}
|
|
|
|
{% block title %}
|
|
{{ "Login" | _ }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>{{ "Login" | _ }}</h1>
|
|
{% if message %}
|
|
<p>{{ message }}</p>
|
|
{% endif %}
|
|
<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 %}
|