Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Register</title> | |
| </head> | |
| <body> | |
| <h1>Register</h1> | |
| <form action="/register" method="POST"> | |
| <input type="text" name="username" placeholder="Username" required><br> | |
| <input type="email" name="email" placeholder="Email" required><br> | |
| <input type="password" name="password" placeholder="Password" required><br> | |
| <input type="submit" value="Register"> | |
| </form> | |
| </body> | |
| </html> | |