73 lines
1.6 KiB
HTML
73 lines
1.6 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial;
|
|
background-image: url('{% static "bg_main.jpg" %}' );
|
|
background-size: 110vw;
|
|
background-repeat: no-repeat;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container" style="margin-top: 15%">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-5">
|
|
<div class="message-box _success">
|
|
<img src="{% static 'success.jpg'%}" width="20%">
|
|
<i class="fa fa-check-circle" aria-hidden="true"></i>
|
|
<h2> Your payment was successful </h2>
|
|
<p> Thank you for your payment. we will <br>
|
|
be in contact with more details shortly </p>
|
|
<meta http-equiv="refresh" content="5; url=main" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
<style>
|
|
.centered-div {
|
|
text-align: center;
|
|
}
|
|
|
|
._failed{ border-bottom: solid 4px red !important; }
|
|
._failed i{ color:red !important; }
|
|
|
|
._success {
|
|
box-shadow: 0 15px 25px #00000019;
|
|
|
|
width: 100%;
|
|
text-align: center;
|
|
margin: 40px auto;
|
|
border-bottom: solid 4px #28a745;
|
|
}
|
|
|
|
._success i {
|
|
font-size: 55px;
|
|
color: #28a745;
|
|
}
|
|
|
|
._success h2 {
|
|
margin-bottom: 12px;
|
|
font-size: 40px;
|
|
font-weight: 500;
|
|
line-height: 1.2;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
._success p {
|
|
margin-bottom: 0px;
|
|
font-size: 18px;
|
|
color: #495057;
|
|
font-weight: 500;
|
|
}
|
|
</style> |