-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
73 lines (72 loc) · 3.03 KB
/
template.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
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Verify your account</title>
<style>
*{
font-family: sans-serif;
padding: 0;
margin: 0;
}
.container{
width: 90%;
margin:0 auto;
}
@media (min-width: 768px) {
.container{
width: 80%;
}
}
@media (min-width: 992px) {
.container{
width: 70%;
}
}
.card-3 {
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
border-radius: 20px;
}
.btn{
display: block;
height: 44px;
width: 50%;
border-radius: 22px;
background: rgba(92,188,182,1);
background: -moz-linear-gradient(left, rgba(92,188,182,1) 0%, rgba(118,224,158,1) 65%, rgba(118,224,158,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(92,188,182,1)), color-stop(65%, rgba(118,224,158,1)), color-stop(100%, rgba(118,224,158,1)));
background: -webkit-linear-gradient(left, rgba(92,188,182,1) 0%, rgba(118,224,158,1) 65%, rgba(118,224,158,1) 100%);
background: -o-linear-gradient(left, rgba(92,188,182,1) 0%, rgba(118,224,158,1) 65%, rgba(118,224,158,1) 100%);
background: -ms-linear-gradient(left, rgba(92,188,182,1) 0%, rgba(118,224,158,1) 65%, rgba(118,224,158,1) 100%);
background: linear-gradient(to right, rgba(92,188,182,1) 0%, rgba(118,224,158,1) 65%, rgba(118,224,158,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5cbcb6', endColorstr='#76e09e', GradientType=1 );
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
box-shadow: none;
line-height: 44px;
text-align: center;
text-decoration: none;
color: white;
font-size: 22px;
margin: 60px auto 20px;
}
.btn:hover{
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
</style>
</head>
<body>
<div class="container">
<div class="container card-3" style="padding: 20px;">
Mrs.M.Nishandhini,
<p>Our system has detected an orphan / abandoned child at <a href="https://www.google.com/maps/search/?api=1&query=__gps__">This location</a></p>
<img src="data:image/png;base64,__img__"/>
<p>Regards</p>
<p>Team OrphanCare</p>
</div>
</div>
<footer style="height: 300px;width: 100%;display: block;background: url(https://raw.githubusercontent.com/samyak-jain/codespace-backend/master/footer.png?token=AVz_6QqZeVOgc_JBUd4BSISKgoRNab3Iks5at0pTwA%3D%3D) repeat-x;">
</footer>
</body>
</html>