]> git.ipfire.org Git - ipfire.org.git/commitdiff
auth: Add some spacing between login form fields
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 15 Oct 2018 21:02:27 +0000 (22:02 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 15 Oct 2018 21:02:27 +0000 (22:02 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/templates/auth/login.html

index f591468dab44ed267c78ada1c7a9f0b3cb7381ae..2199a929ab051e360d41a1b001dcbc68802b2cd5 100644 (file)
 
                                                <input type="hidden" name="next" value="{{ next or "" }}">
 
-                                               <input type="text" class="form-control form-control-lg"
-                                                       name="username" placeholder="{{ _("Username") }}" required autofocus>
-
-                                               <input type="password" class="form-control form-control-lg"
-                                                       name="password" placeholder="{{ _("Password") }}" required>
-
-                                               <br>
+                                               <div class="form-group">
+                                                       <input type="text" class="form-control form-control-lg"
+                                                               name="username" placeholder="{{ _("Username") }}" required autofocus>
+                                               </div>
+
+                                               <div class="form-group">
+                                                       <input type="password" class="form-control form-control-lg"
+                                                               name="password" placeholder="{{ _("Password") }}" required>
+                                               </div>
 
                                                <button type="submit" class="btn btn-primary btn-block">
                                                        {{ _("Log in") }}