@model MALDFGASSURANCE.Models.VerifyCodeViewModel @{ ViewBag.Title = "Vérifier"; }

@ViewBag.Title.

@using (Html.BeginForm("VerifyCode", "Account", new { ReturnUrl = Model.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() @Html.Hidden("provider", @Model.Provider) @Html.Hidden("rememberMe", @Model.RememberMe)

Entrer le code de vérification


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