@model Fab2ApprovalSystem.Models.ExternalLoginConfirmationViewModel @{ 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)

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.

@Html.LabelFor(m => m.UserName, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.UserName, new { @class = "form-control" }) @Html.ValidationMessageFor(m => m.UserName)
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }