Appli_demo/templates/login.html

12 lines
425 B
HTML

{% extends 'base.html' %}
{% block content %}
<form action="{{ url_for('login') }}" method="POST">
<label for="username">username</label>
<input type="text" name="username" placeholder="Username"> <br><br>
<label for="password">password</label>
<input type="password" name="password" placeholder="Password"> <br><br>
<input type="submit" value="Login">
</form>
{% endblock %}