summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdProviderWebForms/Site.Master
blob: bc4f933b73216c1173c3c64706b57d0e37a5ec9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<%@ Master Language="C#" AutoEventWireup="true" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
	<title>OpenID Provider, by DotNetOpenAuth</title>
	<link href="/styles.css" rel="stylesheet" type="text/css" />
	<asp:ContentPlaceHolder ID="head" runat="server" />
</head>
<body>
	<form id="form1" runat="server">
	<div><a href="http://dotnetopenauth.net">
		<img runat="server" src="~/images/DotNetOpenAuth.png" title="Jump to the project web site."
			alt="DotNetOpenAuth" border='0' /></a> </div>
	<div>
		<asp:ContentPlaceHolder ID="Main" runat="server" />
	</div>
	</form>
</body>
</html>