@(resetForm:Form[(String, String)], token: String)(implicit request: RequestHeader) @import helper._ @import securesocial.core.IdentityProvider @implicitFieldConstructor = @{ FieldConstructor(securesocial.views.html.inputFieldConstructor.f) } @main(Messages("securesocial.password.reset") ) {
@request.flash.get("error").map { msg =>
@Messages(msg)
}

@Messages("Please type in your new password with at least 8 characters and confirm it")

@helper.inputPassword( resetForm("password.password1"), '_label -> Messages("securesocial.signup.password1"), 'class -> "form-control", '_help -> "", '_showErrors -> true ) @helper.inputPassword( resetForm("password.password2"), '_label -> Messages("securesocial.signup.password2"), 'class -> "form-control", '_help -> "", '_showErrors -> true )
}