-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.html
77 lines (68 loc) · 2.02 KB
/
history.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RenewEase - History</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
color: #333;
}
.content {
text-align: center;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.history {
margin-top: 20px;
padding: 15px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: #fff;
text-align: left;
}
h2 {
color: #5B86E5;
}
h3 {
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
p {
margin-top: 20px;
color: #555;
}
</style>
</head>
<body>
<div class="content">
<h2>RenewEase History</h2>
<p>View your RenewEase history to track your activities and transactions:</p>
<div class="history">
<h3>Your History:</h3>
<ul>
<li>License Renewal - Date: [Insert Date]</li>
<li>Vehicle Registration - Date: [Insert Date]</li>
<li>License Renewal - Date: [Insert Date]</li>
<!-- Add more items based on user history -->
</ul>
</div>
<p>Stay informed and keep track of your interactions with RenewEase. If you have any questions, feel free to contact our support team.</p>
</div>
</body>
</html>