@model MALDFGASSURANCE.Models.ChangePasswordViewModel
@{
ViewBag.Title = "Changer le mot de passe";
Layout = "~/Views/Shared/_Connecte.cshtml";
}
Modifier le mot de passe
@using (Html.BeginForm("ChangePassword", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary("", new { @class = "text-danger" })
}