-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 1.91 KB
/
index.html
File metadata and controls
53 lines (52 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="colorlib.com">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500,700" rel="stylesheet" />
<link href="../static/main.css" rel="stylesheet" />
</head>
<body>
<div class="s013">
<form action = "http://localhost:5000/result" method = "POST">
<fieldset>
<legend>TOPIC FINDER</legend>
</fieldset>
<div class="inner-form">
<div class="left">
<div class="input-wrap first">
<div class="input-field first">
<label>ENTER KEYWORD</label>
<input type="text" name = "keyword" placeholder="ex: meme, fire, ZOT" />
</div>
</div>
<div class="input-wrap second">
<div class="input-field second">
<label>SOCIAL MEDIA</label>
<div class="input-select">
<select data-trigger="" name="choices-single-defaul">
<option placeholder="">All</option>
<option>Reddit</option>
<option>YouTube</option>
<!--<option>4 adults</option> -->
</select>
</div>
</div>
</div>
</div>
<input type="submit" class="btn-search">
<!-- <button class="btn-search" type="button">SEARCH</button> -->
</div>
</form>
</div>
<script src="js/extention/choices.js"></script>
<script>
const choices = new Choices('[data-trigger]',
{
searchEnabled: false,
itemSelectText: '',
});
</script>
</body><!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>