16 lines
642 B
HTML
16 lines
642 B
HTML
{% extends "base_with_header.html" %}
|
|
|
|
{% block main_container %}
|
|
<div class="content">
|
|
<form action="/signin" method="post">
|
|
<label for="email_field">Email address</label>
|
|
<input id="email_field" type="email" name="email" value="{{ email }}" autocapitalize="none" autocomplete="email" autofocus="autofocus" />
|
|
|
|
<label for="password_field">Password</label>
|
|
<input id="password_field" type="password" name="password" autocomplete="current-password" />
|
|
|
|
<input type="submit" name="commit" value="Sign in" />
|
|
</form>
|
|
{{ message }}
|
|
</div>
|
|
{% endblock %}
|