@(signUpForm:Form[securesocial.controllers.Registration.RegistrationInfo], token: String)(implicit request: RequestHeader) @import securesocial.core.providers.UsernamePasswordProvider @import securesocial.core.IdentityProvider @import helper._ @implicitFieldConstructor = @{ FieldConstructor(securesocial.views.html.inputFieldConstructor.f) } @import services.AppConfiguration @main(Messages("securesocial.signup.title") ) {
@request.flash.get("error").map { msg =>
@msg
}

@Messages("Please enter your personal information to finish registration")

@*
@if( UsernamePasswordProvider.withUserNameSupport ) { @helper.inputText( signUpForm("userName"), '_label -> Messages("securesocial.signup.username"), 'class -> "form-control", '_help -> "", '_showErrors -> true ) } @helper.inputText( signUpForm("firstName"), '_label -> Messages("securesocial.signup.firstName"), 'class -> "form-control", '_help -> "", '_showErrors -> true ) @helper.inputText( signUpForm("lastName"), '_label -> Messages("securesocial.signup.lastName"), 'class -> "form-control", '_help -> "", '_showErrors -> true ) @helper.inputPassword( signUpForm("password.password1"), '_label -> Messages("securesocial.signup.password1"), 'class -> "form-control", '_help -> "", '_showErrors -> true ) @helper.inputPassword( signUpForm("password.password2"), '_label -> Messages("securesocial.signup.password2"), 'class -> "form-control", '_help -> "", '_showErrors -> true ) @helper.checkbox( signUpForm("agreementAcknowledged"), '_label -> "Terms of Service", '_text -> Html("Check the box to accept the Terms of Service"), '_help -> "", '_showErrors -> true )
@Messages("securesocial.signup.cancel")
}