2020-02-29 19:23:48 +00:00
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>Login</h1>
|
|
|
|
<form action="/login" method="POST">
|
2020-02-29 19:56:50 +00:00
|
|
|
{% if message %}
|
|
|
|
<strong>{{ message }}</strong>
|
|
|
|
{% endif %}
|
2020-02-29 19:23:48 +00:00
|
|
|
<fieldset>
|
|
|
|
<legend>Login</legend>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="username">Username:</label>
|
|
|
|
<input type="text" name="username">
|
|
|
|
<label for="username"><abbr title="required" aria-label="required">*</abbr></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="password">Username:</label>
|
|
|
|
<input type="password" name="password">
|
|
|
|
<label for="password"><abbr title="required" aria-label="required">*</abbr></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<button type="submit">Login</button>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|