summaryrefslogtreecommitdiff
path: root/app/templates/register.html
diff options
context:
space:
mode:
authorjerome <jerome@xlinfo.fr>2026-02-24 13:18:28 +0100
committerjerome <jerome@xlinfo.fr>2026-02-24 13:18:28 +0100
commit93febd4968ebbf0f5a90989bbe11abcaaafcdbd1 (patch)
tree27969e7c656077601e31da2b589b3031bc201f32 /app/templates/register.html
downloadhelloflask-93febd4968ebbf0f5a90989bbe11abcaaafcdbd1.tar.gz
helloflask-93febd4968ebbf0f5a90989bbe11abcaaafcdbd1.zip
commit initialHEADmaster
Diffstat (limited to 'app/templates/register.html')
-rw-r--r--app/templates/register.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/templates/register.html b/app/templates/register.html
new file mode 100644
index 0000000..bd39bdf
--- /dev/null
+++ b/app/templates/register.html
@@ -0,0 +1,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>