12 lines
633 B
Plaintext
12 lines
633 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 reports", "reports", "admin") %></li>
|
||
|
<li><%= Html.ActionLink("Manage users", "users", "admin") %></li>
|
||
|
</ul>
|
||
|
</asp:Content>
|