forked from Demilade362/ticketBooking-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
message_two.php
75 lines (64 loc) · 2.15 KB
/
message_two.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Message</title>
<style>
* {
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
.container-extra {
max-width: 600px;
margin: 10rem auto;
text-align: center;
letter-spacing: 1px;
border: 1px solid rgba(0, 0, 0, 0.5);
padding-bottom: 2.5rem;
border-radius: 10px;
background: #ffffff;
}
.text-primary {
color: dodgerblue;
}
h1 {
font-size: 50px;
}
.btn {
padding: 20px;
font-size: 23px;
background-color: dodgerblue;
color: #ffffff;
text-decoration: none;
border-radius: 10px;
}
.fwt-bold {
font-weight: bold;
font-size: 30px;
}
.mb-3 {
margin-bottom: 3rem;
}
.bg-light {
background: #eeeeee;
}
</style>
</head>
<body class="bg-light">
<div class="container-extra">
<h5>
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-ticket-fill mb-1 text-primary" viewBox="0 0 16 16">
<path d="M1.5 3A1.5 1.5 0 0 0 0 4.5V6a.5.5 0 0 0 .5.5 1.5 1.5 0 1 1 0 3 .5.5 0 0 0-.5.5v1.5A1.5 1.5 0 0 0 1.5 13h13a1.5 1.5 0 0 0 1.5-1.5V10a.5.5 0 0 0-.5-.5 1.5 1.5 0 0 1 0-3A.5.5 0 0 0 16 6V4.5A1.5 1.5 0 0 0 14.5 3h-13Z" />
</svg>
<span class="text-primary">Wyte</span>Mecury
</h5>
<h6 class="mb-3">Hello <?php echo $user ?></h6>
<p class="mb-3">Your Ticket to <?php echo $locale ?> has been used. </p>
<p class="mb-3">If Not By You, Reply Us we are here to serve you well</p>
<p class="mb-3"> Thank you for Your Patronage.</p>
<a href="https://www.wytemecury.com.ng/" class="btn btn-primary">View Tickets</a>
</div>
</body>
</html>