-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.html
76 lines (55 loc) · 1.73 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Foody | SignUp</title>
<link rel="icon" href="./images/tab_icon.png">
<link rel="stylesheet" href="success.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer type="text/javascript" src="contact.js"></script>
<meta charset="utf-8">
<!-- delay body load for dark mode -->
<style>
body {
visibility: hidden;
opacity: 0;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="empty-div">
</div>
<div class="login-div">
<div class="logo-div">
<img class="logo" src="images/foody_logo.png" alt="foody_logo">
</div>
<br>
<div class="div-form">
<br>
<form>
<br>
<h3 class="h3-title">Congratulations!</h3>
<h2 class="h2-subtitle">Registered successfully.</h2><br>
<script>
var sec = 6;
function displayseconds()
{
sec--;
document.getElementById("showseconds").innerText="You will be redirected to login page in "+sec+" seconds...";
}
setInterval(displayseconds,1000);
function redirect()
{
window.location="index.php";
}
setTimeout('redirect()', 6000);
</script>
<div id="showseconds"></div>
<br><br>
</form>
</div>
</div>
</div>
</body>
</html>