From 243864b7fdb62816a7ec6b53558f1f52047f0e47 Mon Sep 17 00:00:00 2001
From: arezou <git@gitlab.tugraz.at>
Date: Wed, 8 Jan 2025 11:55:07 +0100
Subject: [PATCH] new file added

---
 form.html | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 form.html

diff --git a/form.html b/form.html
new file mode 100644
index 0000000..49c05fb
--- /dev/null
+++ b/form.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>Registration Form</title>
+</head>
+<body>
+    <h2>Registration Form</h2>
+    <form action="/submit_registration" method="post">
+        <label for="fname">First Name:</label><br>
+        <input type="text" id="fname" name="fname" required><br><br>
+        
+        <label for="lname">Last Name:</label><br>
+        <input type="text" id="lname" name="lname" required><br><br>
+        
+        <label for="email">Email:</label><br>
+        <input type="email" id="email" name="email" required><br><br>
+        
+        <label for="password">Password:</label><br>
+        <input type="password" id="password" name="password" required><br><br>
+        
+        <input type="submit" value="Register">
+    </form>
+</body>
+</html>
-- 
GitLab