From 33fda3cbbd383f2cb5dae7d136bbed5224c8982e Mon Sep 17 00:00:00 2001
From: "Poudel, Pramod" <pramod.poudel@tu-darmstadt.de>
Date: Mon, 14 Aug 2023 16:06:41 +0200
Subject: [PATCH] Upload New File

---
 templates/index.html | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 templates/index.html

diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..991f857
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>Input Form</title>
+</head>
+<body>
+    <form id="inputForm" method="post" action="/save">
+        <label for="input1">Input 1:</label>
+        <input type="text" id="input1" name="input1"><br><br>
+        
+        <label for="input2">Input 2:</label>
+        <input type="text" id="input2" name="input2"><br><br>
+        
+        <label for="input3">Input 3:</label>
+        <input type="text" id="input3" name="input3"><br><br>
+        
+        <input type="submit" value="Save">
+    </form>
+</body>
+</html>
-- 
GitLab