Files
flask-files/files/templates/auth/login.html
Daniel Cortes 2633f84fc7 Primer upload
2019-02-19 01:19:41 -03:00

14 lines
472 B
HTML

{% extends 'base.html' %}
{% block title %}auth/login{% endblock %}
{% block content %}
<form method="post">
<label for="username">~/username:</label>
<input type="text" class="u-full-width" id="username" name="username">
<label for="password">~/password:</label>
<input type="password" class="u-full-width" id="password" name="password">
<input class="button-primary" type="submit" value="Submit">
</form>
{% endblock %}