-
Notifications
You must be signed in to change notification settings - Fork 0
/
Site.Master
37 lines (34 loc) · 1.7 KB
/
Site.Master
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
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="index.master.cs" Inherits="AccountStore.index1" %>
<!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>Account Store (Chexys, Inc / Cub Creek, LLC)</title>
<link href="_css/site.css" rel="stylesheet" type="text/css" />
<script src="_js/jquery-1.6.2.js" type="text/javascript"></script>
<script src="_css/jquery.corner.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#circlelogo").corner('bottom');
});
</script>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<div id="heading">
<div id="circlelogo"><img src="images/AS_circle_deviant.png" /></div>
<div id="sep1"><p><font style="font-size: x-large; font-weight: bold;">Account Store</font> <i>((</i>DEVELOPMENT VERSION<i>))</i></p></div>
<div id="cornerlogo"><img id="tl_c_logo" src="images/AS_safe_dial_logo.png" alt="" /></div>
</div>
<div class="clearfix"></div>
<div>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<div id="footing">
<p style="font-family: Arial, Tahoma, Sans-Serif; color: Gray; font-size: small;">AccountStore Developmed by Michael Kelley | Current Version: 0.1 Alpha | In part for use by Chexys, Inc. and it's friends and affiliates.</p>
</div>
</form>
</body>
</html>