vanth/templates/login.html
Eli Ribble 8c6c6670f8 Pretty up my login form with bootstrap styles
Mostly I just used he right class for the layout container and added
some classes to the login form so that bootstrap styles could handle
the rest
2016-06-09 00:38:34 -06:00

13 lines
521 B
HTML

{% extends 'layout.html' %}
{% block body %}
<h1>Welcome to Vanth</h1>
<h2>Please log in</h2>
<form action="/login/" method="POST">
<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>
</form>
{% endblock %}