Create signup.html
Browse files- signup.html +26 -0
signup.html
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 6 |
+
<title>Sign Up</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css" />
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<div class="container">
|
| 11 |
+
<h2>Create Account</h2>
|
| 12 |
+
<form id="signupForm">
|
| 13 |
+
<input type="text" id="newUsername" placeholder="Username" required />
|
| 14 |
+
<input type="password" id="newPassword" placeholder="Password" required />
|
| 15 |
+
<input type="password" id="confirmPassword" placeholder="Confirm Password" required />
|
| 16 |
+
<button type="submit">Sign Up</button>
|
| 17 |
+
</form>
|
| 18 |
+
<p id="signupMessage"></p>
|
| 19 |
+
<p class="switch-page">
|
| 20 |
+
Already have an account? <a href="index.html">Login here</a>
|
| 21 |
+
</p>
|
| 22 |
+
</div>
|
| 23 |
+
|
| 24 |
+
<script src="script.js"></script>
|
| 25 |
+
</body>
|
| 26 |
+
</html>
|