-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
134 lines (118 loc) · 4.02 KB
/
checkout.html
File metadata and controls
134 lines (118 loc) · 4.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html >
<!--From https://codepen.io/frytyler/pen/EGdtg-->
<head>
<meta charset="UTF-8">
<title>WELCOME TO INNOVACER</title>
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown menu if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
<link href='https://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Arimo' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Hind:300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<style>
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 30px;
height: 30px;
margin-left: 700px;
margin-right: 200px;
margin-top: 450px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="login">
<h1>WELCOME TO INNOVACER</h1>
<!-- Main Input For Receiving Query to our ML -->
<form action="{{ url_for('submit_out')}}"method="post" id="outform"
enctype="multipart/form-data">
<!-- <div class="dropdown">-->
<!-- <button onclick="myFunction()" class="dropbtn">Dropdown</button>-->
<!-- <div id="myDropdown" class="dropdown-content">-->
<!-- <a href="#">Link 1</a>-->
<!-- <a href="#">Link 2</a>-->
<!-- <a href="#">Link 3</a>-->
<!-- <a href="#">Link 4</a>-->
<!-- </div>-->
<!-- </div>-->
<select name="outlist" form="outform">
<option value={{visit[0].values()}}>{{visit[0].values()}}</option>
<option value="visitors">{{visit[1]}}</option>
<option value="man">{{visit[2]}}</option>
<option value="visitors">{{visit[3]}}</option>
<option value="visitors">{{visit[4]}}</option>
<option value="visitors">{{visit[5]}}</option>
<option value="visitors">{{visit[6]}}</option>
<option value="visitors">{{visit[7]}}</option>
<option value="visitors">{{visit[8]}}</option>
<option value="visitors">{{visit[9]}}</option>
</select>
<br>
<br>
<br>
<!-- <input type="file" name="file" accept="image/*" mutiple>-->
<!-- <input type="button" name="file2" onclick="snap()" value="Snap">-->
<button type="submit" value='upload' class="btn btn-primary btn-block btn-large">Submit</button>
</form>
<!-- <p id="sdsd">ejfoe</p>-->
<!--<script>-->
<!-- if({{prediction_text2}}!="")-->
<!-- document.getElementById("sdsd").style.display="none";-->
<!-- </script>-->
<br>
<br>
<!-- <a href="#">{{ prediction_text }}</a>-->
<!-- {{prediction_text}}-->
<br>
<!-- <a href="#">{{ prediction_text2 }}</a>-->
{{prediction_text2}}
{{visit}}
<ul>
{% for user in profile_list %}
<li>{{ user }}</li>
{% endfor %}
</ul>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</body>
</html>