-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.after.html
67 lines (45 loc) · 1.65 KB
/
signup.after.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
<!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="signup.after.css">
<script src="http://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<title>Check Your Inbox </title>
</head>
<body>
<div id="main">
<div id="thankyou">
<div>
<h1>Thank You For Choosing <i>Wecome!</i></h1>
<h3>We have sent you an confirmation email to <i> <h1 style="font-size:bold;" id="emailyou"></h1></i>
Please check your inbox and follow the link to complete your registration.</h3>
</div>
<div id="out">
<div> <img src="https://bit.ly/3Clcmfn" alt=""> <h3>Gmail</h3></div>
<div><img src="https://bit.ly/3fAH2AI" alt=""><h3>Outlook</h3></div>
</div>
<div>
<h3> If You have any Questions Please <a href="">contact us</a></h3>
<h3>Dont See the email in your inbox? </h3>
<div>
<h3 id="resendemail">LOGIN</h3>
</div>
</div>
</div>
<div>
<img src="https://accounts.welcomesoftware.com/svgs/illustrations/mail-sent-v2.svg" alt="">
</div>
</div>
</body>
</html>
<script>
let em=(localStorage.getItem("data"))
document.querySelector("#emailyou").innerText=em
let re=document.querySelector("#resendemail")
re.addEventListener("click",myresend)
function myresend(){
window.location.replace("login.html")
}
</script>