cREATE templates/form.html
Browse files- templates/form.html +13 -0
templates/form.html
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>Simple Form</title>
|
| 5 |
+
</head>
|
| 6 |
+
<body>
|
| 7 |
+
<form method="post">
|
| 8 |
+
<label for="giturl">Enter git url:</label>
|
| 9 |
+
<input type="text" name="giturl" id="giturl" required>
|
| 10 |
+
<button type="submit">Submit</button>
|
| 11 |
+
</form>
|
| 12 |
+
</body>
|
| 13 |
+
</html>
|