* fixed issue in user provider where if the app restarts you're still logged in but the app doesn't recognize you as such
		
			
				
	
	
		
			12 lines
		
	
	
		
			635 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			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> |