2016-06-02 19:51:08 -07:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% block body %}
|
2016-06-08 23:38:34 -07:00
|
|
|
<h1>Welcome to Vanth</h1>
|
|
|
|
<h2>Please log in</h2>
|
2016-06-02 19:51:08 -07:00
|
|
|
<form action="/login/" method="POST">
|
2016-06-08 23:38:34 -07:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="username">username</label>
|
|
|
|
<input id="username" type="text" name="username" class="form-control"></input>
|
|
|
|
<label for="password">password</label>
|
|
|
|
<input id="password" type="password" name="password" class="form-control"></input>
|
|
|
|
<input class="btn btn-primary" type="submit" value="Log in" class="form-control"></input>
|
2016-06-02 19:51:08 -07:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|