-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (62 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>High Tides | Enter</title>
</head>
<body>
<div id="login_page">
<h1>High Tides</h1>
<button id="signup">Sign Up</button>
<div id="sign_up" class="modal">
<div class="modal-content">
<span class="close1">×</span>
<form class="signup-form">
<h2>Sign Up</h2>
<div class="form-group">
<label for="username">Username:</label>
<input type="text" id="signup_username" name="username" required />
</div>
<br /><br />
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="signup_password" name="password" required />
</div>
<br><br>
<input type="submit" value="Sign Up" />
</form>
</div>
</div>
<button id="login">Log In</button>
<div id="log_in" class="modal">
<div class="modal-content">
<span class="close2">×</span>
<form class="login-form">
<h2>Log In</h2>
<div class="form-group">
<label for="username">Username:</label>
<input type="text" id="login_username" name="username" required />
</div>
<br /><br />
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="login_password" name="password" required />
</div>
<br><br>
<input type="submit" value="Log In" />
</form>
</div>
</div>
</div>
<script src="./src/dependencies/gun.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gun/lib/unset.js"></script>
<script src="./src/dependencies/sea.js"></script>
<script src="https://unpkg.com/peerjs@latest/dist/peerjs.min.js"></script>
<script src="./src/utils.js"></script>
<!-- <script src="./src/api.js"></script> -->
<script src="script.js"></script>
</body>
</html>