diff options
Diffstat (limited to 'samples/OpenIdRelyingPartyMvc/Views/Shared/Site.Master')
-rw-r--r-- | samples/OpenIdRelyingPartyMvc/Views/Shared/Site.Master | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/samples/OpenIdRelyingPartyMvc/Views/Shared/Site.Master b/samples/OpenIdRelyingPartyMvc/Views/Shared/Site.Master new file mode 100644 index 0000000..d9b759c --- /dev/null +++ b/samples/OpenIdRelyingPartyMvc/Views/Shared/Site.Master @@ -0,0 +1,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 runat="server"> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <title>DotNetOpenAuth ASP.NET MVC Login sample</title> + <link href="../../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://dotnetopenid.googlecode.com">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>Andrew Arnott © Copyright 2009 </p> + </div> + <!--/footer--> + </div> + <!--/mainContent--> + </div> + <!--/page--> +</body> +</html> |