<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Sign Up</title> | |
</head> | |
<body> | |
<h2>Sign Up</h2> | |
<form method="POST" action="/signup"> | |
<label for="nickname">Nickname:</label> | |
<input type="text" id="nickname" name="nickname" required><br> | |
<label for="username">Username:</label> | |
<input type="text" id="username" name="username" required><br> | |
<label for="password">Password:</label> | |
<input type="password" id="password" name="password" required><br> | |
<button type="submit">Sign Up</button> | |
</form> | |
<!-- Mostra i messaggi flash --> | |
{% include 'includes/flash.html' %} | |
</body> | |
</html> |