-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample2.html
48 lines (42 loc) · 1.43 KB
/
sample2.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
<!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, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Fund Transfer</title>
<!-- Bootstrap core CSS-->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template-->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Custom styles for this template-->
<link href="css/sb-admin.css" rel="stylesheet">
<base target="_parent">
</head>
<body class="bg-light">
<div class="container">
<div class="card card-login mx-auto mt-5">
<div class="card-body">
<img src="images/success.gif" alt="Transfer Successful" class="img-fluid">
</div>
<div class="card-footer">
Your transfer was successful <a href="index.php" class="btn btn-info">Continue</a>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Core plugin JavaScript-->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<script>
$(function () {
setTimeout(function() {
window.location.replace("index.php");
}, 10000);
});
</script>
</body>
</html>