@model IdentitySample.Models.ExternalLoginConfirmationViewModel
@{
//TODO: Until we have a way to specify the layout page at application level.
Layout = "/Views/Shared/_Layout.cshtml";
ViewBag.Title = "Register";
}
@ViewBag.Title.
Associate your @ViewBag.LoginProvider account.
@using (Html.BeginForm("ExternalLoginConfirmation", "Account", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
Association Form
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
You've successfully authenticated with @ViewBag.LoginProvider.
Please enter a user name for this site below and click the Register button to finish
logging in.
}
@section Scripts {
@*TODO : Until script helpers are available, adding script references manually*@
@*@Scripts.Render("~/bundles/jqueryval")*@
}