]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/auth/login.html
Bootstrap 4 migration: login
[people/shoehn/ipfire.org.git] / templates / auth / login.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Log in") }}{% end block %}
4
5 {% block body %}
6 <div class="container">
7 <section class="features-content col-12">
8
9 <div class="row">
10 <div class="col-md-6 offset-md-3">
11 <h3>{{ _("Log In") }}</h3>
12 </div>
13 </div>
14
15 <div class="row">
16 <div class="col-md-6 offset-md-3">
17 <form action="" method="POST">
18 <input type="text" class="form-control" id="inputUsername"
19 name="username" placeholder="{{ _("Username") }}" required autofocus>
20 <input type="password" class="form-control" id="inputPassword"
21 name="password" placeholder="{{ _("Password") }}" required>
22 <br>
23 <button type="submit" class="btn btn-primary">{{ _("Log in") }}</button>
24 {% raw xsrf_form_html() %}
25 </form>
26 </div>
27 </div>
28 </section>
29 </div>
30 {% end block %}