Files
GitBucket/src/main/twirl/signin.scala.html
takezoe 89c0e52c1d Refactor for views.
- Replace urls with helpers.url and helpers.assets
- Move google-code-prettify to main.scala.html
- Move some CSS styles to gitbucket.css
2013-06-27 21:19:41 +09:00

16 lines
553 B
HTML

@()(implicit context: app.Context)
@import context._
@main("Sign in"){
<form action="@path/signin" method="POST" validate="true">
<label for="userName">Username</label>
<input type="text" name="userName" id="userName"/>
<span id="error-userName" class="error"></span>
<label for="password">Password</label>
<input type="password" name="password" id="password"/>
<span id="error-password" class="error"></span>
<div>
<input type="submit" class="btn btn-success" value="Sign in"/>
</div>
</form>
}