-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
43 lines (35 loc) · 1.4 KB
/
Copy pathsettings.html
File metadata and controls
43 lines (35 loc) · 1.4 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
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<header style="text-align: center; font-weight: bolder; font-size: 35px;">Giga Nike Bot (BETA RELEASE V1)</header>
<br>
<br>
<body style="background-color: lightblue">
<script type = "text/javascript" src="./index.js"></script>
<button onclick="home()">Home</button>
<br>
<br>
<div class="login-none" id="login-none">
<h2>Login Details</h2>
<input type="text" id="email" class ="email" placeholder="Email Address"></input>
<input type="text" id="password" class ="password" placeholder="Password"></input>
<button onclick="loginDetails()" class="login-details" id="login_details">Login</button>
</div>
<div class="login-save" id="login-save">
<label style="font-weight: bold;">Email: </label>
<label id="email-save"></label>
<br>
<button onclick="updateLoginInformation()">Update Login Information</button>
</div>
<br>
<label style="font-weight: bold;">Test mode:</label>
<label id="test-mode">False</label>
<br>
<button onclick="toggleTest()">Toggle Test Mode</button>
<br>
<script>
window.onload = page_load();
</script>
</body>
</html>