21 lines
720 B
HTML
21 lines
720 B
HTML
{% extends "base_with_header.html" %}
|
|
|
|
{% block main_container %}
|
|
|
|
<div class="content" id="sign-in">
|
|
|
|
<h1>{{ tr.t(Sentence::SignInTitle) }}</h1>
|
|
|
|
<form action="/signin" method="post">
|
|
<label for="input-email">{{ tr.t(Sentence::EmailAddress) }}</label>
|
|
<input id="input-email" type="email" name="email" value="{{ email }}" autocapitalize="none" autocomplete="email" autofocus="autofocus" />
|
|
|
|
<label for="input-password">{{ tr.t(Sentence::Password) }}</label>
|
|
<input id="input-password" type="password" name="password" autocomplete="current-password" />
|
|
|
|
<input type="submit" value="{{ tr.t(Sentence::SignInMenu) }}" />
|
|
</form>
|
|
{{ message }}
|
|
</div>
|
|
|
|
{% endblock %}
|