Merge from booking branch
This commit is contained in:
parent
25906d0227
commit
9a2652739b
266 changed files with 12833 additions and 2337 deletions
23
booking/Views/Account/ResetPassword.aspx
Normal file
23
booking/Views/Account/ResetPassword.aspx
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<%@ Page Title="Reset your Password" Language="C#" Inherits="System.Web.Mvc.ViewPage<LostPasswordModel>" MasterPageFile="~/Models/App.master" %>
|
||||
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
|
||||
<%= Html.ValidationSummary("Modification de mot de passe") %>
|
||||
|
||||
<% using(Html.BeginForm("ResetPassword", "Account")) { %>
|
||||
Enter one of the following : <br/>
|
||||
<ul><li>
|
||||
<label for="UserName">Your user name (login):</label>
|
||||
<%= Html.TextBox( "UserName" ) %>
|
||||
<%= Html.ValidationMessage("UserName", "*") %></li>
|
||||
<li>
|
||||
<label for="Email">The e-mail address you used to register here:</label>
|
||||
<%= Html.TextBox( "Email" ) %>
|
||||
<%= Html.ValidationMessage("Email", "*") %>
|
||||
</li>
|
||||
</ul>
|
||||
Then, hit the following button:
|
||||
<input type="submit" value="I lost my password!"/> <br/>
|
||||
A message will be sent to you, containning a link that you'll can use to reset your password.
|
||||
<% } %>
|
||||
</asp:Content>
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue