-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
81 lines (65 loc) · 2.2 KB
/
index.php
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>OW Strat Roulette</title>
<!--
Created by Matthew W.
as part of a school project.
-->
<link rel="stylesheet" type="text/css" href="css/global.css" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<script src="js/strats.js" type="text/javascript" defer></script>
<script src="js/index.js" type="text/javascript" defer></script>
</head>
<body>
<div id="header">
<div id="headerMenu">
<a href="#menu">
<img width="168" height="56" src="images/logo.png" alt="Return to Homepage" />
</a>
</div>
</div>
<div id="content">
<div id="menu">
<div class="button">
<a href="#gen">Generate a New Strat</a>
</div>
<div class="button">
<a href="#create">Create a New Strat</a>
</div>
</div>
<div id="gen">
<div id="genContent">
<h1 id="stratHeader">[Strat Header]</h1>
<p id="stratText">[Strat Text]</p>
<p id="stratCredit">Strat by <span id="stratAuthor">[Author]</span></p>
</div>
<div class="button copy">
<a href="javascript:void(0);">Copy to Clipboard</a>
</div>
<div class="button gen">
<a href="javascript:void(0);">Generate a New Strat</a>
</div>
<div class="button">
<a href="#create">Create a New Strat</a>
</div>
<textarea id="stratCopy"></textarea>
</div>
<div id="create">
<input type="text" id="createHeader" class="createField" placeholder="Title" maxlength="255" />
<input type="text" id="createText" class="createField" placeholder="Instructions" maxlength="255" />
<input type="text" id="createAuthor" class="createField" placeholder="Author" maxlength="255" />
<div class="button" id="sendStrat">
<a href="javascript:void(0);">Submit New Strat</a>
</div>
<div class="button">
<a href="#gen">Generate a New Strat</a>
</div>
<div id="response"></div>
</div>
</div>
<div id="footer">
<p>I do not own anything, or am representitive of, or affiliated with ©2016 BLIZZARD ENTERTAINMENT, INC., including the Overwatch logo, brand, trademark, or concept.</p>
</div>
</body>
</html>