@model Winsoft.GOV.XF.WX.Models.ExternalLoginConfirmationViewModel @{ ViewBag.Title = "注册"; }

@ViewBag.Title。

激活你的 @ViewBag.LoginProvider 帐户。

@using (Html.BeginForm("ExternalLoginConfirmation", "Account", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken()

关联表单


@Html.ValidationSummary(true, "", new { @class = "text-danger" })

你已成功地使用 @ViewBag.LoginProvider 进行身份验证。 请在下面输入此站点的用户名,然后单击“注册”按钮完成 登录。

@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" })
@Html.LabelFor(m => m.Hometown, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.Hometown, new { @class = "form-control" })
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }