-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccepted.html
117 lines (109 loc) · 3.56 KB
/
accepted.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
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
<html>
<style type="text/css">
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
</style>
<body style="margin: 0;
font-family: Poppins;
font-size: 16px;
color: black;
background-color: #FFFFFE;
overflow-x: hidden;">
<nav style="display: flex;
justify-content: space-between;
padding: 0rem 3rem;
background-color: #FFFFFE;
width: 100%;
box-shadow: 0 0.75rem 1rem 0 rgba(0, 0, 0, 0.14),
0 17px 50px 0 rgba(0, 0, 0, 0.19);">
<a href="http://travelmate.vitrendz.com">
<img src="./images/logo.png" style="height: 3.25rem; padding: 1rem 0rem;">
</a>
<ul style="display: flex;
text-decoration: none;
align-items: center;
padding-right: 6.75rem;
flex-wrap: wrap;">
<a href="https://travelmate.vitrendz.com/dashboard" style="text-decoration: none;
list-style: none;
padding: 0 0.5rem;
">
<img src="./images/avatar.png" style="border-radius: 25rem; height: 3rem;">
</a>
<a href="https://travelmate.vitrendz.com/dashboard" style="text-decoration: none;
list-style: none;">
<li style="list-style: none;
padding: 0 0.5rem; font-weight: 600; color: #001963;">Chirantan Jain</li>
</a>
</ul>
</nav>
<div style="display: flex;
justify-content: space-around;
padding-top: 2rem;
width: 90%;
margin: auto;">
<div style="max-width: 25rem; color: #001963; font-weight: 700;">
<h1>
Yay, we found your travel mate!
</h1>
<p>
Your request has been accepted by <strong>${fromName}</strong>.
<br>
<br>
You are one click away from Step 3!
</p>
<button style="font-size: 1rem;
font-weight: 700;
border: none;
padding: 0.5rem 2rem;
text-align: center;
cursor: pointer;
border-radius: 30px;
background-color: #6246EA;
">
<a href="http://travelmate.vitrendz.com" style="text-decoration: none; color: white;">
Start Chatting
</a>
</button>
</div>
<img src="./images/two.png" style="height: 20rem;">
</div>
<div style="margin: 1rem;">
<img src="./images/how.png" style="width: 100%; max-height: 60%; background-repeat: no-repeat; background-size: contain;">
</div>
<footer style="display: flex;
background-color: #E5E5F3;
height: 30vh;
gap: 2rem;
align-items: center;
justify-content: space-between;
padding: 0% 5%;">
<a href="https://vitrendz.com/">
<img src="./images/logo_vitrendz.png" style="height: 20%;">
</a>
<a href="https://travelmate.vitrendz.com/">
<img src="./images/logo.png" style="height: 20%;">
</a>
<ul style="text-decoration: none; list-style: none;">
<a href="https://travelmate.vitrendz.com/" style="text-decoration: none; color: black;">
<li style=" margin-top: 1rem;">Home</li>
</a>
<a href="https://travelmate.vitrendz.com/dashboard" style="text-decoration: none; color: black;">
<li style=" margin-top: 1rem;">Dashboard</li>
</a>
<a href="https://travelmate.vitrendz.com/addRequest" style="text-decoration: none; color: black;">
<li style=" margin-top: 1rem;">Add Request</li>
</a>
</ul>
</footer>
<div style="height: 5vh;
background-color: #A7ACCE;
padding: 0.5rem;">
<p style="color: #001963;
text-align: center;
align-self: center;
font-size: 0.75rem;">
All Rights Reserved © 2022
</p>
</div>
</body>
</html>