-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·119 lines (83 loc) · 2.5 KB
/
index.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>Sam Tac Toe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Do not add `link` tags-->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- Do not add `script` tags-->
<script src="public/vendor.js" type="text/javascript" charset="utf-8" defer></script>
<script src="public/application.js" type="text/javascript" charset="utf-8" defer></script>
</head>
<body class="container">
<center>
<div class="outer-padding">
<br>
<h1>Minimum Viable Product Tac Toe</h1>
<div id="score-display">hi.</div>
<div id="announcer">
Welcome to my Tic Tac Toe game! Choose who starts.
</div>
<form id='reset-button' class="forms">
<h3>Choose Starting Player</h3>
<h3><button id="continue-reset-x" type="button">X starts</button>
<button id="continue-reset-o" type="button">O starts</button></h3>
</form>
<!-- -->
<div class="tile-padding">
<div class="tiles" id="A1">
<h1>A1</h1>
</div>
<div class="tiles" id="A2">
<h1>A2</h1>
</div>
<div class="tiles" id="A3">
<h1>A3</h1>
</div>
<div class="clear"></div>
<div class="tiles" id="B1">
<h1>B1</h1>
</div>
<div class="tiles" id="B2">
<h1>B2</h1>
</div>
<div class="tiles" id="B3">
<h1>B3</h1>
</div>
<div class="clear"></div>
<div class="tiles" id="C1">
<h1>C1</h1>
</div>
<div class="tiles" id="C2">
<h1>C2</h1>
</div>
<div class="tiles" id="C3">
<h1>C3</h1>
</div>
<div class="clear"></div>
</div>
<div class="tan-line"></div>
<div class="authentications-padding">
<div id="login-infobox"><h4>You are playing as a guest.</h4></div>
<div id="sign-in-field">
<form id='sign-in-form' class="forms">
<input name="credentials[email]" type="email" placeholder="Enter Username">
<input name="credentials[password]" type="password" placeholder="Enter Password">
<button type="submit" class="forms">Sign In</button>
</form>
</div>
<div class="tan-line"></div>
<div class="inline">
<div id="dropdown-anchor">
<h4><button id="show-sign-up" class="formlink" type="button">Sign Up</button></h4>
</div>
<div id="dropdown-link">
</div>
</div>
<div id="sign-up-field" class="forms"></div>
</div>
<h3>:)</h3>
</div>
</center>
</body>
</html>