-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
23 lines (23 loc) · 919 Bytes
/
game.html
File metadata and controls
23 lines (23 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mystery Quest - Sign Up</title>
<link rel="stylesheet" href="css/style.css">
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-auth.js"></script>
<script defer src="firebase-config.js"></script>
<script defer src="js/signup.js"></script>
</head>
<body>
<div id="signup-container">
<h1>Create Account</h1>
<input type="email" id="signup-email" placeholder="Email">
<input type="password" id="signup-password" placeholder="Password">
<button id="signup-btn">Sign Up</button>
<p id="signup-error-message"></p>
<div id="loading-spinner" style="display: none;">Loading...</div>
</div>
</body>
</html>