Newer
Older
GitBucket / src / main / twirl / gitbucket / core / signinform.scala.html
@Naoki Takezoe Naoki Takezoe on 14 Nov 2015 1015 bytes Adjust styles for Bootstrap3
@(systemSettings: gitbucket.core.service.SystemSettingsService.SystemSettings)(implicit context: gitbucket.core.controller.Context)
@import context._
<div class="box-header">
  @if(systemSettings.allowAccountRegistration){
    <div class="pull-right">
      <a href="@path/register" class="btn btn-mini">Create new account</a>
    </div>
  }
  <span class="strong">Sign in</span>
</div>
<div class="box-content-bottom">
  <form action="@path/signin" method="POST" validate="true">
    <div class="form-group">
      <label for="userName">Username:</label>
      <span id="error-userName" class="error"></span>
      <input type="text" name="userName" id="userName" class="form-control" autofocus/>
    </div>
    <div class="form-group">
      <label for="password">Password:</label>
      <span id="error-password" class="error"></span>
      <input type="password" name="password" id="password" class="form-control"/>
    </div>
    <input type="submit" class="btn btn-success" value="Sign in"/>
  </form>
</div>