mirror of
https://github.com/wassname/flask-bootstrap.git
synced 2026-06-27 16:10:14 +08:00
16 lines
342 B
HTML
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 %}
|