-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsuccessPage.html
56 lines (50 loc) · 1.19 KB
/
successPage.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
49
50
51
52
53
54
55
56
<!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>
<style>
#success {
width:60VW;
height:70VH;
margin: auto;
}
img{
width:100%;
}
.green{
color:green;
}
#backtomain{
margin-top: 100px;
text-align: center;
font-size: 2VW;
}
</style>
</head>
<body id="bodyT">
<div id="success">
<img src="https://classicaliqtest.com/wp-content/uploads/2020/04/add.png" alt="">
</div>
<div id="backtomain">
You will be redirected to the main page in <span class="green">few seconds</span> seconds
</div>
</body>
</html>
<script>
function backtomain()
{
setTimeout(function (){
// alert("You")
window.location.href="index.html"
},3000)
}
backtomain();
if(screen.width==1280)
{
let x=document.getElementById("bodyT");
x.style="zoom: 0.69;,-moz-transform: scale(0.69);"
}
</script>