-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.html
More file actions
48 lines (41 loc) · 1.48 KB
/
results.html
File metadata and controls
48 lines (41 loc) · 1.48 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Results</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body>
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="inner">
<!-- Logo -->
<a href="index.html" class="logo">
<span class="symbol"><img src="images/logo2.svg" alt=""></span><span class="title">ProgramBase </span>
</a>
</div>
</header>
</div>
<div id="wrapper2">
<div id="main">
<div class="inner">
<header>
<h1 id="userScore"></h1>
<h2 id="userTime"></h2>
<h3>Enter your unique username below to be entered into the leaderboards</h3>
<div class="textarea-wrapper">
<textarea maxlength="20" name="demo-message" id="TextUsername" placeholder="Enter your username" rows="1" style="overflow: hidden; resize: none; height: 69px;"></textarea>
</div>
<h1></h1>
<button class="button primary fit" onclick="getUsername()">Submit Username</button>
</header>
</div>
</div>
</div>
<!-- Link to the JavaScript file here: -->
<script src="assets/js/results.js"></script>
</body>
</html>