forked from Swapnil887/incompetent-coil-1138
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
37 lines (32 loc) · 793 Bytes
/
success.html
File metadata and controls
37 lines (32 loc) · 793 Bytes
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
<!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>success</title>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://i.postimg.cc/Fsp8J7LR/20221213-201414.jpg"
/>
<style>
#img img{
margin-top: 100px;
margin-left: 250px;
}
</style>
</head>
<body>
<div id="img">
<img src="https://www.shikharclasses.in/wp-content/uploads/2020/04/PAYMENT-SUCCESS.png" alt="">
</div>
<div id="return"></div>
</body>
</html>
<script>
setTimeout(() => {
window.location.href = "after_login.html";
}, 2000);
</script>