Newer
Older
gitbucket_jkp / src / main / twirl / gitbucket / core / signin.scala.html
@Naoki Takezoe Naoki Takezoe on 2 Mar 2015 476 bytes Change package name
@()(implicit context: gitbucket.core.controller.Context)
@import context._
@main("Sign in"){
  <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>
}