-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.html
39 lines (36 loc) · 1.08 KB
/
confirmation.html
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
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body, html {font-family: "Raleway", sans-serif; height: 100%}
p {font-size: 400%}
button {
background-color: rgb(19, 141, 255); /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
</style>
<body>
<div style="height: 30%"></div>
<center><p>{{message}}
{% if code==200 %}
<span style='color: green;'>✔</span>
{% else %}
<span style='color: red;'>✖</span>
{% endif %}
</p>
<button value="Back" onClick="window.location.href=window.location.href">back</button>
</center>
</body>
</html>