-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponse.html
More file actions
50 lines (50 loc) · 1.31 KB
/
Copy pathresponse.html
File metadata and controls
50 lines (50 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Automatic Review Response Generator</title>
<style>
body {
background-color: black;
color: white;
text-align: center;
font-family: Arial, sans-serif;
}
h1 {
font-size: 3em;
margin-top: 100px;
}
.response-box {
width: 400px;
padding: 20px;
margin: 40px auto;
background-color: #f5f5f5;
color: black;
border-radius: 15px;
font-size: 1em;
line-height: 1.5em;
}
.btn {
padding: 15px 30px;
border: none;
border-radius: 50px;
cursor: pointer;
font-size: 1em;
background-color: #4CAF50;
color: white;
text-decoration: none;
}
.btn:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1>Automatic Review Response Generator</h1>
<div class="response-box">
{{ response }}
</div>
<a href="{{ url_for('home') }}" class="btn">Go Back</a>
</body>
</html>