mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-03-17 23:04:22 +01:00
Initial commit
This commit is contained in:
12
app/views/auth/signIn.scala.html
Normal file
12
app/views/auth/signIn.scala.html
Normal file
@@ -0,0 +1,12 @@
|
||||
@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>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user