-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (130 loc) · 5.76 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!doctype html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<!-- HTML Meta Tags -->
<title>Response Display</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Collect and display responses from various devices." />
<meta name="canonical" href="https://tylergordonhill.com/response-display" />
<meta name="theme-color" content="#128A74" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Response Display" />
<meta property="og:description" content="Collect and display responses from various devices." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tylergordonhill.com/response-display" />
<meta
property="og:image"
content="https://tylergordonhill.com/response-display/linkpreview.png"
/>
<meta property="og:image:type" content="image/png" />
<meta
property="og:image:alt"
content="Screenshot of the website displaying sample responses with options to submit more, clear, and hide the list. "
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:domain" content="tylergordonhill.com" />
<!-- Link Tags -->
<link rel="icon" href="/response-display/tabicon.png" />
<link href="/style-guide/style.css" rel="stylesheet" type="text/css" />
<link href="/style-guide/header/style.css" rel="stylesheet" type="text/css" />
<link href="/style-guide/inputs/style.css" rel="stylesheet" type="text/css" />
<link href="/style-guide/inputs/featured/style.css" rel="stylesheet" type="text/css" />
<link href="/style-guide/footer/style.css" rel="stylesheet" type="text/css" />
<link href="/style-guide/modal/style.css" rel="stylesheet" type="text/css" />
<link href="/response-display/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h2 id="title">Response Display</h2>
<a id="byLine" href="/">Tyler Gordon Hill</a>
</header>
<div id="playerOperator">
<button id="player" class="large">Player</button>
<button id="operator" class="large">Operator</button>
</div>
<main>
<div id="responses">
<h3 id="responsesTitle">Responses<span></span></h3>
<div id="responseDisplay">
<h4>Loading...</h4>
</div>
<form id="responseInput">
<input id="newResponse" class="large" type="text" placeholder="Add response" />
<button type="submit" class="large featured">Submit</button>
</form>
<div class="options">
<button id="responsesClear" class="medium">Clear</button>
<button id="responsesHide" class="medium"></button>
</div>
</div>
<div id="players">
<h3>Players</h3>
<div id="playerDisplay"></div>
<form id="playerInput">
<input id="newPlayer" class="medium" type="text" placeholder="Add player" />
<button type="submit" class="medium featured">Add</button>
</form>
<div class="options">
<button id="playersClear" class="medium">Clear</button>
<button id="playersHide" class="medium">Hide</button>
</div>
</div>
</main>
<footer>
<div id="footer-main">
<div>
<p><strong>Contact and Social</strong></p>
<a href="mailto:[email protected]" target="_blank" rel="noopener">Email</a>
<a href="http://www.linkedin.com/in/tylergordonhill" target="_blank" rel="noopener"
>LinkedIn</a
>
<a href="https://github.com/TyHil" target="_blank" rel="noopener">GitHub</a>
<a href="https://replit.com/@TylerGHill" target="_blank" rel="noopener">Replit</a>
<a href="https://thangs.com/TylerHill" target="_blank" rel="noopener">Thangs</a>
</div>
<div>
<p><strong>Subsites</strong></p>
<a href="/set-operations-for-spotify">Set Operations for Spotify</a>
<a href="/typewriter-formatting">Typewriter Formatting</a>
<a href="/cah-maker">Cards Against Humanity Card Maker</a>
<a href="/response-display">Response Display</a>
<a href="/password-generator">Password Generator</a>
<a href="/recipes">Recipes</a>
</div>
</div>
<div id="footer-sub">
<a href="/legal/privacy-policy">Privacy Policy</a>
<a href="/sitemap.xml">Sitemap</a>
</div>
</footer>
<div id="playersClearConfirm" class="modalBg out">
<div class="modal">
<h2>Clear Players?</h2>
<div class="options">
<button id="playersClearNo" class="medium">No</button>
<button id="playersClearYes" class="medium">Yes</button>
</div>
</div>
</div>
<div id="playerRemoveConfirm" class="modalBg out">
<div class="modal">
<h2>Remove Player?</h2>
<div class="options">
<button id="playerRemoveNo" class="medium">No</button>
<button id="playerRemoveYes" class="medium">Yes</button>
</div>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/10.1.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.1.0/firebase-analytics-compat.js"></script>
<script src="/style-guide/script.js"></script>
<script src="/style-guide/modal/script.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.1.0/firebase-app-check-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.1.0/firebase-database-compat.js"></script>
<script src="/response-display/script.js"></script>
</body>
</html>