vgquotes/Src/VideoGameQuotes.Web/Views/Admin/Password.aspx
tmont 99cb4defbe * login/logout
* change administration password
2011-02-17 20:55:47 +00:00

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>