Spaces:
Runtime error
Runtime error
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Signup</title> | |
<link rel="stylesheet" href="{{ url_for('static', filename='signup.css') }}"> | |
</head> | |
<body> | |
<div class="signup-container"> | |
<h2>Create an Account</h2> | |
<form action="/signup" method="POST"> | |
<div class="input-group"> | |
<label for="username">Username:</label> | |
<input type="text" id="username" name="username" required> | |
</div> | |
<div class="input-group"> | |
<label for="email">Email:</label> | |
<input type="email" id="email" name="email" required> | |
</div> | |
<div class="input-group"> | |
<label for="password">Password:</label> | |
<input type="password" id="password" name="password" required> | |
</div> | |
<div class="input-group"> | |
<label for="confirm_password">Confirm Password:</label> | |
<input type="password" id="confirm_password" name="confirm_password" required> | |
</div> | |
<button type="submit">Sign Up</button> | |
</form> | |
</div> | |
</body> | |
</html> | |