-
Notifications
You must be signed in to change notification settings - Fork 2
/
success.html
34 lines (30 loc) · 952 Bytes
/
success.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
<!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">
<link rel="stylesheet" href="styles/sucess.css">
<link rel="icon" href="https://groww.in/logo-groww270.png" type="image/x-icon">
<title>Groww-Payment</title>
</head>
<body>
<div id="main-container">
<div id="gif-container">
<img src="https://cdn.dribbble.com/users/2185205/screenshots/7886140/media/90211520c82920dcaf6aea7604aeb029.gif"
alt="Success">
</div>
<div id="text">
<h2>Investment Order Confirmed</h2>
<p>We will notify you once your order is processed.</p>
</div>
</div>
</body>
<script>
window.onload = () => {
setTimeout(() => {
window.location.href = 'stocks.html';
}, 3000);
}
</script>
</html>