20 lines
583 B
HTML
20 lines
583 B
HTML
|
{% extends 'layout.html' %}
|
||
|
{% block body %}
|
||
|
|
||
|
<h2>Login</h2>
|
||
|
|
||
|
<form role="form" method="post">
|
||
|
<div class="form-group">
|
||
|
<label for="username">Username or Email</label>
|
||
|
<input type="text" class="form-control" id="username" name="username" />
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="password">Password</label>
|
||
|
<input type="password" name="password" id="password" class="form-control" />
|
||
|
</div>
|
||
|
|
||
|
<input type="submit" class="btn btn-primary" value="Login" />
|
||
|
</form>
|
||
|
|
||
|
{% endblock %}
|