|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8" /> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
|
|
<title>Sign Up</title> |
|
|
<link rel="stylesheet" href="style.css" /> |
|
|
</head> |
|
|
<body> |
|
|
<div class="container"> |
|
|
<h2>Create Account</h2> |
|
|
<form id="signupForm"> |
|
|
<input type="text" id="newUsername" placeholder="Username" required /> |
|
|
<input type="password" id="newPassword" placeholder="Password" required /> |
|
|
<input type="password" id="confirmPassword" placeholder="Confirm Password" required /> |
|
|
<button type="submit">Sign Up</button> |
|
|
</form> |
|
|
<p id="signupMessage"></p> |
|
|
<p class="switch-page"> |
|
|
Already have an account? <a href="index.html">Login here</a> |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<script src="script.js"></script> |
|
|
</body> |
|
|
</html> |
|
|
|