@(form: Form[Authentication.Login], returnTo: String)
@layout {
Please sign in
@helper.form(helper.CSRF(routes.Authentication.authenticate(returnTo))) {
@for(error <- form.globalErrors) {
- @error.message
}
@helper.inputText(form("username"), '_label -> "Name")
@helper.inputPassword(form("password"), '_label -> "Password")
}
}