Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

index.html 9.0 KB

You have to be logged in to leave a comment. Sign In
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
  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, shrink-to-fit=no" />
  6. <meta name="description" content="" />
  7. <meta name="author" content="" />
  8. <title>Web App</title>
  9. <link rel="icon" type="image/x-icon" href="static/assets/favicon.ico" />
  10. <!-- Font Awesome icons (free version)-->
  11. <script src="https://use.fontawesome.com/releases/v5.15.3/js/all.js" crossorigin="anonymous"></script>
  12. <!-- Google fonts-->
  13. <link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
  14. <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css" />
  15. <!-- Core theme CSS (includes Bootstrap)-->
  16. <link href="static/css/styles.css" rel="stylesheet" />
  17. </head>
  18. <body>
  19. <!-- Navigation-->
  20. <nav class="navbar navbar-expand-lg navbar-light" id="mainNav">
  21. <div class="container px-4 px-lg-5">
  22. <a class="navbar-brand" href="/">Home</a>
  23. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
  24. Menu
  25. <i class="fas fa-bars"></i>
  26. </button>
  27. <div class="collapse navbar-collapse" id="navbarResponsive">
  28. <ul class="navbar-nav ms-auto py-4 py-lg-0">
  29. <!-- <li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="index.html">Home</a></li>-->
  30. <!-- <li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="about.html">About</a></li>-->
  31. <!-- <li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="post.html">Sample Post</a></li>-->
  32. <!-- <li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="contact.html">Contact</a></li>-->
  33. </ul>
  34. </div>
  35. </div>
  36. </nav>
  37. <!-- Page Header-->
  38. <header class="masthead" style="background-image: url('static/assets/img/wine.jpg')">
  39. <div class="container position-relative px-4 px-lg-5">
  40. <div class="row gx-4 gx-lg-5 justify-content-center">
  41. <div class="col-md-10 col-lg-8 col-xl-7">
  42. <div class="site-heading">
  43. <h1>Wine Quality Prediction</h1>
  44. <span class="subheading">A Wine Quality Checking Web App</span>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </header>
  50. <!-- Main Content-->
  51. <div class="container px-4 px-lg-5">
  52. <!DOCTYPE html>
  53. <html>
  54. <head>
  55. <meta charset="utf-8">
  56. <title>Form-v9 by Colorlib</title>
  57. <!-- Mobile Specific Metas -->
  58. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  59. <!-- Font-->
  60. <link rel="stylesheet" type="text/css" href="static/css2/nunito-font.css">
  61. <!-- Main Style Css -->
  62. <link rel="stylesheet" href="static/css2/style.css"/>
  63. </head>
  64. <body class="form-v9">
  65. <div class="page-content">
  66. <div class="form-v9-content" style="background-image: url('static/assets/img/form-v9.jpg')">
  67. <form class="form-detail" action="/predict" method="post">
  68. <h2>Please Fill The Information</h2>
  69. <div class="form-row-total">
  70. <div class="form-row">
  71. <label for="fixed_acidity"> Fixed Acidity:</label>
  72. <input type="text" name="fixed_acidity" id="fixed_acidity" class="input-text" placeholder="fixed_acidity" required>
  73. </div>
  74. <div class="form-row">
  75. <label for="volatile_acidity"> Volatile Acidity:</label>
  76. <input type="text" name="volatile_acidity" id="volatile_acidity" class="input-text" placeholder="volatile_acidity" required>
  77. </div>
  78. </div>
  79. <div class="form-row-total">
  80. <div class="form-row">
  81. <label for="citric_acid"> Citric Acid:</label>
  82. <input type="text" name="citric_acid" id="citric_acid" class="input-text" placeholder="citric_acid" required>
  83. </div>
  84. <div class="form-row">
  85. <label for="residual_sugar"> Residual Sugar:</label>
  86. <input type="text" name="residual_sugar" id="residual_sugar" class="input-text" placeholder="residual_sugar" required>
  87. </div>
  88. </div>
  89. <div class="form-row-total">
  90. <div class="form-row">
  91. <label for="chlorides"> Chlorides:</label>
  92. <input type="text" name="chlorides" id="chlorides" class="input-text" placeholder="chlorides" required>
  93. </div>
  94. <div class="form-row">
  95. <label for="free_sulfur_dioxide"> Free Sulfur Dioxide:</label>
  96. <input type="text" name="free_sulfur_dioxide" id="free_sulfur_dioxide" class="input-text" placeholder="free_sulfur_dioxide" required>
  97. </div>
  98. </div>
  99. <div class="form-row-total">
  100. <div class="form-row">
  101. <label for="total_sulfur_dioxide"> Total Sulfur Dioxide:</label>
  102. <input type="text" name="total_sulfur_dioxide" id="total_sulfur_dioxide" class="input-text" placeholder="total_sulfur_dioxide" required>
  103. </div>
  104. <div class="form-row">
  105. <label for="density"> Density:</label>
  106. <input type="text" name="density" id="density" class="input-text" placeholder="density" required>
  107. </div>
  108. </div>
  109. <div class="form-row-total">
  110. <div class="form-row">
  111. <label for="pH"> pH:</label>
  112. <input type="text" name="pH" id="pH" class="input-text" placeholder="pH" required>
  113. </div>
  114. <div class="form-row">
  115. <label for="sulphates"> Sulphates:</label>
  116. <input type="text" name="sulphates" id="sulphates" class="input-text" placeholder="sulphates" required>
  117. </div>
  118. </div>
  119. <div class="form-row-total">
  120. <div class="form-row">
  121. <label for="alcohol"> Alcohol:</label>
  122. <input type="text" name="alcohol" id="alcohol" class="input-text" placeholder="alcohol" required>
  123. </div>
  124. </div>
  125. <div class="form-row-last">
  126. <input type="submit" name="register" class="register" value="Predict">
  127. </div>
  128. </form>
  129. </div>
  130. </div>
  131. </body><!-- This templates was made by Colorlib (https://colorlib.com) -->
  132. </html>
  133. </div>
  134. <!-- Footer-->
  135. <footer class="border-top">
  136. <div class="container px-4 px-lg-5">
  137. <div class="row gx-4 gx-lg-5 justify-content-center">
  138. <div class="col-md-10 col-lg-8 col-xl-7">
  139. <ul class="list-inline text-center">
  140. <li class="list-inline-item">
  141. <a href="https://www.linkedin.com/in/boktiarahmed73/">
  142. <span class="fa-stack fa-lg">
  143. <i class="fas fa-circle fa-stack-2x"></i>
  144. <i class="fab fa-linkedin fa-stack-1x fa-inverse"></i>
  145. </span>
  146. </a>
  147. </li>
  148. <li class="list-inline-item">
  149. <a href="https://www.youtube.com/dswithbappy">
  150. <span class="fa-stack fa-lg">
  151. <i class="fas fa-circle fa-stack-2x"></i>
  152. <i class="fab fa-youtube fa-stack-1x fa-inverse"></i>
  153. </span>
  154. </a>
  155. </li>
  156. <li class="list-inline-item">
  157. <a href="https://github.com/entbappy">
  158. <span class="fa-stack fa-lg">
  159. <i class="fas fa-circle fa-stack-2x"></i>
  160. <i class="fab fa-github fa-stack-1x fa-inverse"></i>
  161. </span>
  162. </a>
  163. </li>
  164. </ul>
  165. <div class="small text-center text-muted fst-italic"></div>
  166. <div class="small text-center text-muted fst-italic"></div>
  167. </div>
  168. </div>
  169. </div>
  170. </footer>
  171. <!-- Bootstrap core JS-->
  172. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script>
  173. <!-- Core theme JS-->
  174. <script src="static/js/scripts.js"></script>
  175. </body>
  176. </html>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...