forked from gShubham7/crowded-push-1335
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemailnotfound.html
More file actions
61 lines (57 loc) · 2.19 KB
/
emailnotfound.html
File metadata and controls
61 lines (57 loc) · 2.19 KB
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
<!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">
<!-- icon file -->
<link rel="icon" href="SPARK-America.png">
<!-- font file -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Oswald:wght@500&display=swap" rel="stylesheet">
<!-- css file -->
<link rel="stylesheet" href="./Style/emailnotfound.css">
<title>Email Not Found</title>
</head>
<body>
<div id="maincontainer">
<div id="logo">
<img src="https://portal.peopleonehealth.com/Content/images/people_one_logo.svg" alt="" >
</div>
<div id="container">
<h3 id="mainheader">We couldn't verify you based on that email address.</h3>
<h3 id="subheader">PLEASE CHOOSE ONE OF THE FOLLOWING OPTIONS:</h3>
<div class="box">
<p class="par">Go back and ensure you entered the correct email address.</p>
<div>
<button class="btn" id="back">Go Back</button>
</div>
</div>
<div class="sep1"></div>
<div class="box">
<p class="par">Try an alternate registration method. (Social Security Number + Name + Birthdate)</p>
<div>
<button class="btn" id="alter">Alternate Registration</button>
</div>
</div>
<div class="sep1"></div>
<div class="box">
<p class="par" id="con">Contact support for assistance.</p>
<div>
<button class="btn" id="net">Contact support</button>
</div>
</div>
</div>
</div>
</body>
</html>
<script>
document.getElementById("back").addEventListener("click",function(){
window.location.href= "peopleone_sign_in.html"
})
document.getElementById("alter").addEventListener("click",function(){
window.location.href="createAccountPage.html"
})
document.getElementById("net").addEventListener("click",function(){
window.location.href="customersupport.html"
})
</script>