17 lines
636 B
Plaintext
17 lines
636 B
Plaintext
<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage<VideoGameQuotes.Web.Models.ChangePasswordModel>" MasterPageFile="~/Views/Shared/Site.Master" %>
|
|
<%@ Import Namespace="Portoa.Web.Util" %>
|
|
<asp:Content runat="server" ID="Title" ContentPlaceHolderID="TitleContent">Change Password</asp:Content>
|
|
<asp:Content runat="server" ID="Main" ContentPlaceHolderID="MainContent">
|
|
<% using (Html.BeginForm()) { %>
|
|
<p>
|
|
<%= Html.LabelFor(model => model.Password) %>
|
|
<br />
|
|
<%= Html.PasswordFor(model => model.Password) %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= Html.Submit("Change Password") %>
|
|
</p>
|
|
<% } %>
|
|
</asp:Content>
|