stepenZEN commited on
Commit
a21c352
·
verified ·
1 Parent(s): dcc65ec

cREATE templates/form.html

Browse files
Files changed (1) hide show
  1. 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>