summaryrefslogtreecommitdiff
path: root/app/templates/register.html
blob: bd39bdff515389fcc10114d8ba5a833d8c6973f3 (plain)
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>