@model IdentitySample.Models.SetPasswordViewModel @{ //TODO: Until we have a way to specify the layout page at application level. Layout = "/Views/Shared/_Layout.cshtml"; ViewBag.Title = "Set Password"; }

You do not have a local username/password for this site. Add a local account so you can log in without an external login.

@using (Html.BeginForm("SetPassword", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken()

Set your password


@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.LabelFor(m => m.NewPassword, new { @class = "col-md-2 control-label" })
@Html.PasswordFor(m => m.NewPassword, new { @class = "form-control" })
@Html.LabelFor(m => m.ConfirmPassword, new { @class = "col-md-2 control-label" })
@Html.PasswordFor(m => m.ConfirmPassword, new { @class = "form-control" })
} @section Scripts { @*TODO : Until script helpers are available, adding script references manually*@ @*@Scripts.Render("~/bundles/jqueryval")*@ }