summaryrefslogtreecommitdiff
path: root/web/template
diff options
context:
space:
mode:
Diffstat (limited to 'web/template')
-rw-r--r--web/template/sign-in.tmpl13
1 files changed, 8 insertions, 5 deletions
diff --git a/web/template/sign-in.tmpl b/web/template/sign-in.tmpl
index 4ca30a17b..3385d5d4a 100644
--- a/web/template/sign-in.tmpl
+++ b/web/template/sign-in.tmpl
@@ -3,11 +3,14 @@
<section class="login">
<h1>Login</h1>
<form action="/auth/sign_in" method="POST">
- <label for="email">Email</label>
- <input type="email" class="form-control" name="username" required placeholder="Please enter your email address">
-
- <label for="password">Password</label>
- <input type="password" class="form-control" name="password" required placeholder="Please enter your password">
+ <div class="labelinput">
+ <label for="email">Email</label>
+ <input type="email" class="form-control" name="username" required placeholder="Please enter your email address">
+ </div>
+ <div class="labelinput">
+ <label for="password">Password</label>
+ <input type="password" class="form-control" name="password" required placeholder="Please enter your password">
+ </div>
<button type="submit" class="btn btn-success">Login</button>
</form>
</section>