Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @(form: Form[com.play.forms.LoginForm])
  2.  
  3. <html>
  4.  <head>
  5.   <title>Please Login</title>
  6.  </head>
  7.  <body>
  8.        
  9.   @helper.form(routes.Authentication.authenticate) {
  10.            
  11.     <h1>Sign in</h1>
  12.            
  13.     @if(form.hasGlobalErrors) {
  14.       <p class="error">
  15.        @form.globalError.message
  16.       </p>
  17.     }
  18.            
  19.     <p>
  20.      <input type="email" name="email" placeholder="Email" value="@form("email").value">
  21.     </p>
  22.     <p>
  23.      <input type="password" name="password" placeholder="Password">
  24.     </p>
  25.     <p>
  26.      <button type="submit">Login</button>
  27.     </p>
  28.            
  29.  }
  30.  </body>
  31. </html>