@using EnVisage.Code @model EnVisage.Models.ActivationUserModel @{ Layout = ""; } Activate account - Prevu @Styles.Render(String.Format("{0}/{1}", Constants.C_BUNDLE_STYLES_BASE_PATH, "prevu-commonstyles")) @Styles.Render(String.Format("{0}/{1}", Constants.C_BUNDLE_STYLES_BASE_PATH, "prevu-accountstyles")) @Scripts.Render("~/Scripts/jquery-2.0.3.min.js")
@using (Html.BeginForm("Activate", "Account", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() @Html.HiddenFor(model => model.UserId)
@Html.TextBoxFor(m => m.UserName, new { @class = "form-control input-lg", @placeholder = "Username", @id = "username_id", @readonly = "readonly" })
@Html.TextBoxFor(m => m.Email, new { @class = "form-control input-lg", @placeholder = "Username", @id = "username_id", @readonly = "readonly" })
@Html.PasswordFor(m => m.Password, new { @class = "form-control input-lg", @placeholder = "Password", @id = "password_id" }) @Html.ValidationMessageFor(m => m.Password)
@Html.PasswordFor(m => m.ConfirmationPassword, new { @class = "form-control input-lg", @placeholder = "Password confirmation", @id = "password_confirmation_id" }) @Html.ValidationMessageFor(m => m.ConfirmationPassword)
@Html.ValidationSummary(false, "Account could not be activated due to the following errors:") @if (ViewData.ModelState.IsValid) {
    Password needs be a minimum of 6 characters including:
  • 1 upper case letter
  • 1 lower case letter
  • 1 number
  • 1 special character (e.g. - @(Html.Raw("!#$\"%&'()*+,-./:;<=>?@[\\]^_`{|}~")))
}
@*

@Html.ActionLink("Register", "Register") if you don't have a local account.

*@ }
@*
Already have an account? Sign In
*@ @Scripts.Render(String.Format("{0}/{1}", Constants.C_BUNDLE_SCRIPTS_BASE_PATH, "platform-pixeladmin"))