File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ {% extends "page.html" %}
2
+
3
+ {% block site %}
4
+ {% if message %}
5
+ {% for key in message %}
6
+ < div >
7
+ {{message[key]}}
8
+ </ div >
9
+ {% endfor %}
10
+ {% endif %}
11
+ < form action ="{{base_url}}login?next={{next}} " method ="post ">
12
+ {{ xsrf_form_html() | safe }}
13
+ < label for ="password_input "> < strong > {% trans %}Password:{% endtrans %}</ strong > </ label >
14
+ < input type ="password " name ="password " id ="password_input ">
15
+ < button type ="submit " id ="login_submit "> {% trans %}Log in{% endtrans %}</ button >
16
+ </ form >
17
+ {% endblock site %}
Original file line number Diff line number Diff line change
1
+ {% extends "page.html" %}
2
+
3
+ {% block site %}
4
+ {% if message %}
5
+ {% for key in message %}
6
+ < div >
7
+ {{message[key]}}
8
+ </ div >
9
+ {% endfor %}
10
+ {% endif %}
11
+
12
+ {% trans %}Proceed to the < a href ="{{base_url}}login "> login page{% endtrans %}</ a > .
13
+ {% endblock %}
You can’t perform that action at this time.
0 commit comments