Spaces:
Sleeping
Sleeping
Create templates / home.html
Browse files- templates / home.html +20 -0
templates / home.html
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Document</title>
|
| 7 |
+
</head>
|
| 8 |
+
<body>
|
| 9 |
+
|
| 10 |
+
<h2>Enter The Website Link You Want Scrapped </h2>
|
| 11 |
+
<form action = '/scrap' method = 'POST'>
|
| 12 |
+
<label for ='url'>WEBSITE URL </label>
|
| 13 |
+
<input type = 'text' name = 'url' placeholder = 'Enter URL Here'>
|
| 14 |
+
<label for = 'headers'>Headers</label>
|
| 15 |
+
<input type = 'text' name = 'Headers' placeholder = 'Enter Headers Here'>
|
| 16 |
+
<button type = 'submit'>Submit</button>
|
| 17 |
+
|
| 18 |
+
</form>
|
| 19 |
+
</body>
|
| 20 |
+
</html>
|