-
Notifications
You must be signed in to change notification settings - Fork 1
/
MasterPage.master
50 lines (48 loc) · 1.58 KB
/
MasterPage.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
38
39
40
41
42
43
44
45
46
47
48
49
50
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Gamer-Tag Database</title>
<link rel="stylesheet" type="text/css" href="homeStyle.css"/>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<header>
Gamer-Tag Database
<br />
<i style="font-size: 50%">Share Gamer-Tags at Your Event!</i>
</header>
<nav>
<table align="center">
<tr>
<h3> Actions: </h3>
</tr>
<tr>
<td>
<a href ="/">Add New Entry</a>
</td>
</tr>
<tr>
<td>
<a href ="ViewAll.aspx">View All Entries</a>
</td>
</tr>
</table>
<br/>
<a href="https://orgsync.com/22120/chapter"><img src="./Resources/acm.png" width="100" height="100" /></a>
<a href="https://salukilan.com"><img src="./Resources/salukilan.png" width="84" height="110" /></a>
</nav>
<div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<footer>
<p><small>
Copyright <%: DateTime.Now.Year %> © Ethan Richardson & Jake Reed<br />
</small></p>
</footer>
</form>
</body>
</html>