aboutsummaryrefslogtreecommitdiff
path: root/app/views/pages/loginForm.scala.html
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2015-02-08 00:17:21 +0100
committerPacien TRAN-GIRARD2015-02-08 00:17:21 +0100
commitcb902da50bd75b623a47727e62c0c69913422bfd (patch)
tree2296df3bc243176f640732fffc80ec553a371367 /app/views/pages/loginForm.scala.html
parent3d22cb7d1ee6bdf7b484bbf001c76e81ae351dea (diff)
downloadminibay-cb902da50bd75b623a47727e62c0c69913422bfd.tar.gz
Authentication draft
Diffstat (limited to 'app/views/pages/loginForm.scala.html')
-rw-r--r--app/views/pages/loginForm.scala.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/views/pages/loginForm.scala.html b/app/views/pages/loginForm.scala.html
new file mode 100644
index 0000000..5e4d8e5
--- /dev/null
+++ b/app/views/pages/loginForm.scala.html
@@ -0,0 +1,27 @@
1@(loginForm: Form[LoginData])(implicit flash: Flash, token: play.filters.csrf.CSRF.Token)
2
3@templates.ebe("Log in")() {
4
5 <div class="pure-g">
6 <div class="pure-u-1 pure-u-lg-1-3 centered">
7
8 <h2>Log in</h2>
9
10 @views.html.fragments.forms.globalErrors(loginForm)
11
12 @helper.form(action = routes.Auth.loginSubmit(), 'class -> "pure-form") {
13
14 @helper.CSRF.formField
15
16 <fieldset class="pure-group">
17 @views.html.fragments.forms.inputField(loginForm("username"), "text", "Username")
18 @views.html.fragments.forms.inputField(loginForm("password"), "password", "Password")
19 </fieldset>
20
21 <button type="submit" class="pure-button pure-input-1 pure-button-primary">Log in</button>
22 }
23
24 </div>
25 </div>
26
27}