vgquotes/Src/VideoGameQuotes.Web/Views/Admin/Index.aspx
tmont 0dd343cc06 * flagged quote admin page
* fixed issue in user provider where if the app restarts you're still logged in but the app doesn't recognize you as such
2011-02-18 01:46:02 +00:00

12 lines
635 B
Plaintext

<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Views/Shared/Site.Master" %>
<asp:Content runat="server" ID="Title" ContentPlaceHolderID="TitleContent">Admin</asp:Content>
<asp:Content runat="server" ID="Main" ContentPlaceHolderID="MainContent">
<h2>Site Administration</h2>
<ul>
<li><%= Html.ActionLink("Create admin", "create", "admin") %></li>
<li><%= Html.ActionLink("Change password", "password", "admin") %></li>
<li><%= Html.ActionLink("View quote flags", "flags", "admin") %></li>
<li><%= Html.ActionLink("Manage users", "users", "admin") %></li>
</ul>
</asp:Content>