-
Notifications
You must be signed in to change notification settings - Fork 1
/
order_sucessful.php
44 lines (33 loc) · 1.24 KB
/
order_sucessful.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playball&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/login.css">
<title>CloverEmporium - Login</title>
<style>
.order{
width: 410px;
min-height: 240px;
background: #FFF;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0,0,0,.3);
padding: 40px 30px;
}
</style>
</head>
<body background="assets/images/bg.jpg" style="background-repeat: no-repeat; background-size: cover;">
<div class="container order" style="height:100px;">
<p class="login-text">Order Placed Successfully ✔</p>
<hr>
<div class="return" style="margin-top: 30px;">
<a href="index.php">Return to Home</a>
</div>
</div>
</body>
</html>