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/Account/ForgotPassword.cshtml | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Project-Unite/Views/Account/ForgotPassword.cshtml (limited to 'Project-Unite/Views/Account/ForgotPassword.cshtml') diff --git a/Project-Unite/Views/Account/ForgotPassword.cshtml b/Project-Unite/Views/Account/ForgotPassword.cshtml new file mode 100644 index 0000000..1bb2611 --- /dev/null +++ b/Project-Unite/Views/Account/ForgotPassword.cshtml @@ -0,0 +1,29 @@ +@model Project_Unite.Models.ForgotPasswordViewModel +@{ + ViewBag.Title = "Forgot your password?"; +} + +

@ViewBag.Title.

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

Enter your email.

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