@model TDC.Web.Models.RegisterExternalLoginModel @{ ViewBag.Title = "Register"; }

@ViewBag.Title.

Associate your @ViewBag.ProviderDisplayName account.

@using (Html.BeginForm("ExternalLoginConfirmation", "Account", new { ReturnUrl = ViewBag.ReturnUrl })) { @Html.AntiForgeryToken() @Html.ValidationSummary(true)
Association Form

You've successfully authenticated with @ViewBag.ProviderDisplayName. Please enter a user name for this site below and click the Confirm button to finish logging in.

  1. @Html.LabelFor(m => m.UserName) @Html.TextBoxFor(m => m.UserName) @Html.ValidationMessageFor(m => m.UserName)
@Html.HiddenFor(m => m.ExternalLoginData)
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }