Newer
Older
gitbucket_jkp / src / main / twirl / gitbucket / core / signin.scala.html
@Naoki Takezoe Naoki Takezoe on 25 Jun 2016 607 bytes Content is scrollable
@()(implicit context: gitbucket.core.controller.Context)
@import context._
@main("Sign in"){
  <div class="content-wrapper main-center">
    <div class="content body">
      <div class="signin-form">
        @settings.information.map { information =>
          <div class="alert alert-info" style="background-color: white; color: #555; border-color: #4183c4; font-size: small; line-height: 120%;">
            <button type="button" class="close" data-dismiss="alert">&times;</button>
            @Html(information)
          </div>
        }
        @signinform(settings)
      </div>
    </div>
  </div>
}