Spaces:
Sleeping
Sleeping
Create templates/index.html
Browse files- templates/index.html +32 -0
templates/index.html
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
|
4 |
+
<head>
|
5 |
+
<meta charset="utf-8">
|
6 |
+
<meta name="keywords" content="chatPix">
|
7 |
+
<meta name="description" content="">
|
8 |
+
<title>App</title>
|
9 |
+
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
|
10 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script>
|
11 |
+
<link rel="stylesheet" href="style.css?v={{ version }}">
|
12 |
+
|
13 |
+
</head>
|
14 |
+
<body>
|
15 |
+
<div class="top-bar">
|
16 |
+
<form action="{{ url_for('home') }}" method="post" enctype=multipart/form-data autocomplete="off">
|
17 |
+
<div class="form-item">
|
18 |
+
|
19 |
+
<label for="query">Query</label>
|
20 |
+
<input type="text" id="query" name="query">
|
21 |
+
<label for="count">Count</label>
|
22 |
+
<input type="text" id="count" name="count">
|
23 |
+
|
24 |
+
</div>
|
25 |
+
|
26 |
+
<input type="submit" class="button_make" value="Run">
|
27 |
+
</form>
|
28 |
+
|
29 |
+
</div>
|
30 |
+
{{ html_out }}
|
31 |
+
</body>
|
32 |
+
</html>
|