1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <title>Register</title> </head> <body> <h1>Register</h1> <form action="{{ url_for('index') }}" method="POST"> <input type="text" name="username" placeholder="Username" required> <button type="submit">Valider</button> </form> </body> </html>