summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdRelyingPartyMvc/Views/Shared/Site.Master
blob: 44f1cba395b95b7d92cb79bb7b692e447412090f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="OpenIdRelyingPartyMvc.Views.Shared.Site" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
	<title>DotNetOpenAuth ASP.NET MVC Login sample</title>
	<link href='<%= Url.Content("~/Content/Site.css") %>' rel="stylesheet" type="text/css" />
	<asp:ContentPlaceHolder ID="HeadContentPlaceHolder" runat="server" />
</head>
<body>
	<div class="page">
		<div id="header">
			<p id="logo"><a href="">DotNetOpenAuth ASP.NET MVC Login sample</a></p>
			<ul id="mainMenu">
				<li>
					<%= Html.ActionLink("Home", "Index", "Home")%>
				</li>
				<li>
					<%= Html.ActionLink("Member Area", "Index", "User")%>
				</li>
			</ul>
		</div>
		<div id="mainContent">
			<div class="columnsContainer">
				<div class="leftColumn">
					<h2>External OpenID Links</h2>
					<ul>
						<li><a href="http://dotnetopenauth.net">DotNetOpenAuth</a></li>
						<li><a href="http://openid.net">About OpenID</a></li>
					</ul>
				</div>
				<!--/leftColumn-->
				<div class="rightColumn">
					<asp:ContentPlaceHolder ID="MainContentPlaceHolder" runat="server"/>
				</div>
				<!--/rightColumn-->
				<div class="clear">
				</div>
			</div>
			<!--/columnsContainer-->
			<div id="footer">
				<p>Outercurve Foundation &copy; Copyright 2011 </p>
			</div>
			<!--/footer-->
		</div>
		<!--/mainContent-->
	</div>
	<!--/page-->
</body>
</html>