Login form
This commit is contained in:
parent
5e2975ab3b
commit
fd1479edcd
|
@ -1,5 +1,23 @@
|
||||||
{% extends "base" %}
|
{% extends "base" %}
|
||||||
|
|
||||||
{% block content %}
|
{% 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 %}
|
{% endblock content %}
|
||||||
|
|
Loading…
Reference in New Issue