25 lines
764 B
HTML
25 lines
764 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Signup Page</title>
|
|
<script src="signup.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<h2>Signup</h2>
|
|
<form id="signupForm">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required>
|
|
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
|
|
<label for="confirmPassword">Confirm Password:</label>
|
|
<input type="password" id="confirmPassword" name="confirmPassword" required>
|
|
|
|
<button type="button" onclick="validateForm()">Sign Up</button>
|
|
</form>
|
|
</body>
|
|
</html>
|