@(form:Form[controllers.Register])(errors:List[String] = List()) @import helper.twitterBootstrap._ @* The register page *@ @css = { } @main("SRP Example", css) {

Back

@errors.map(error =>
  • {error}
  • ) @helper.form(action = routes.Application.register) { @helper.inputText(form("Username")) @helper.inputPassword(form("Password")) } }