From cdc61eb4ea5309769ad4db84d92594e4dc3dff67 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 20 Mar 2017 16:45:17 -0400 Subject: Initial commit (azure deploy test) --- Project-Unite/Views/Manage/ChangePassword.cshtml | 40 ++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Project-Unite/Views/Manage/ChangePassword.cshtml (limited to 'Project-Unite/Views/Manage/ChangePassword.cshtml') diff --git a/Project-Unite/Views/Manage/ChangePassword.cshtml b/Project-Unite/Views/Manage/ChangePassword.cshtml new file mode 100644 index 0000000..f008697 --- /dev/null +++ b/Project-Unite/Views/Manage/ChangePassword.cshtml @@ -0,0 +1,40 @@ +@model Project_Unite.Models.ChangePasswordViewModel +@{ + ViewBag.Title = "Change Password"; +} + +

@ViewBag.Title.

+ +@using (Html.BeginForm("ChangePassword", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) +{ + @Html.AntiForgeryToken() +

Change Password Form

+
+ @Html.ValidationSummary("", new { @class = "text-danger" }) +
+ @Html.LabelFor(m => m.OldPassword, new { @class = "col-md-2 control-label" }) +
+ @Html.PasswordFor(m => m.OldPassword, new { @class = "form-control" }) +
+
+
+ @Html.LabelFor(m => m.NewPassword, new { @class = "col-md-2 control-label" }) +
+ @Html.PasswordFor(m => m.NewPassword, new { @class = "form-control" }) +
+
+
+ @Html.LabelFor(m => m.ConfirmPassword, new { @class = "col-md-2 control-label" }) +
+ @Html.PasswordFor(m => m.ConfirmPassword, new { @class = "form-control" }) +
+
+
+
+ +
+
+} +@section Scripts { + @Scripts.Render("~/bundles/jqueryval") +} \ No newline at end of file -- cgit v1.2.3