Login form

This commit is contained in:
Alex Wright 2020-02-29 19:57:40 +01:00
parent 5e2975ab3b
commit fd1479edcd
1 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,23 @@
{% extends "base" %}
{% block content %}
<h1>Hello!</h1>
<h1>Login</h1>
<form action="/login" method="POST">
<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 %}