mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 09:52:38 +02:00
25 lines
744 B
HTML
25 lines
744 B
HTML
{% extends "base.html" %}
|
|
{% block title %}<h2>Login</h2>{% endblock title %}
|
|
{% block content %}
|
|
{% if msg is not none %}
|
|
<article>{{ msg }}</article>
|
|
{% endif %}
|
|
<div class="frame">
|
|
<label for="username">Username</label>
|
|
<input id="username"
|
|
name="username"
|
|
type="text"
|
|
form="login"
|
|
autofocus>
|
|
<label for="password">Password</label>
|
|
<input id="password"
|
|
name="password"
|
|
type="password"
|
|
form="login">
|
|
<form id="login"
|
|
method="post"
|
|
action="{{ url_for('post_login') }}">
|
|
<input type="Submit">
|
|
</form>
|
|
</div>
|
|
{% endblock content %}
|