-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 1.93 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{url_for('static', filename='css/main.css')}}">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>App</title>
</head>
<body>
<div class="split left">
<div class="centered">
<h2> Centiment Analysis </h2>
<h6>Give your valuable comment to this product</h6>
<img src="../static/products/project img 3.jpg" alt="">
</div>
</div>
<div class="split right">
<div class="container mt-5 mb-5">
<div class="d-flex justify-content-center row">
<div class="d-flex flex-column col-md-8">
<div>
<label for="">Positive Sentiments : {{ data.positive }}</label>
</div>
<div>
<label for="">Negative Sentiments : {{ data.negative }}</label>
</div>
<div>
<form method="post">
<textarea name="text"></textarea>
<input type="submit">
</form>
</div>
<div class="comment-bottom bg-white p-2 px-4">
{% for review in data.reviews %}
<hr/>
<div class="commented-section mt-2">
<div class="d-flex flex-row align-items-center commented-user">
</div>
<div class="text-nowrap bd-highlight"><span>{{ review }}</span></div>
<hr/>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</body>
</html>