@model Top4HireDrivers.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, "", 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.

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