Files
flask-bootstrap/templates/login.html
T
Eric S. Bullington 14f006ee5e Initial commit
2012-03-06 12:57:28 -05:00

16 lines
342 B
HTML

{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block main %}
<div id="login">
<form method="POST">
Username: <input type="text" name="username"/><br/>
Password: <input type="password" name="password"/><br/>
<input type="submit" class="btn" value="Log in"/>
</form>
</div>
{% endblock %}