mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-10 15:35:59 +01:00
- Replace urls with helpers.url and helpers.assets - Move google-code-prettify to main.scala.html - Move some CSS styles to gitbucket.css
16 lines
553 B
HTML
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>
|
|
}
|