-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathusername.html
More file actions
24 lines (20 loc) · 853 Bytes
/
username.html
File metadata and controls
24 lines (20 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "layout.html" %}
{% block content %}
<div id="content-outer" class="container index">
<section class="p-0 row no-gutters layout-standard">
<div class="col-12 col-lg-4 sidebar">
{% include "header_2.html" %}
</div>
<div class="col-12 col-lg-8 mainbar">
<div class="page-title dh-bg-light dh-border p-4 d-flex align-items-center">
<h1 class="text-white text-shadow">{{ __("Enter username") }}</h1>
</div>
<div class="p-4 dh-bg-light dh-border desc">
<p>{{ __("Please enter your username to continue") }}</p>
{{ loginform|raw }}
</div>
</div>
</section>
</div>
{% include "content_footer.html" %}
{% endblock %}