mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-11 14:30:50 +01:00
12 lines
446 B
HTML
12 lines
446 B
HTML
@import helper._
|
|
@(loginForm: Form[LoginRequest]/*, socialProviderRegistry: SocialProviderRegistry*/)(implicit requestHeader: DefaultRequest, messages: Messages)
|
|
|
|
@main("Log in"){
|
|
@form(routes.AuthController.authenticate()){
|
|
@CSRF.formField
|
|
@inputText(loginForm("username"))
|
|
@inputPassword(loginForm("password"))
|
|
@* checkbox(loginForm("rememberMe")) *@
|
|
<button type="submit">Log me in!</button>
|
|
}
|
|
} |