rbmd_test/templates/rbmd/login.html
2018-04-10 10:32:48 +03:00

20 lines
382 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
{% if error %}
<span style="color: red">Error: {{ error }}</span><p>
{% end %}
<form action="/login" method="POST">
Username: <input name="username" type="text"><br>
Password: <input name="password" type="password"><br>
{% module xsrf_form_html() %}
<input type="submit">
</form>
</body>
</html>