-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathverification-pending.html
More file actions
47 lines (41 loc) · 1.96 KB
/
verification-pending.html
File metadata and controls
47 lines (41 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CoolMathTime - Verify Your Email</title>
<link rel="stylesheet" href="https://houselearning.org/auth/style.css">
<link rel="stylesheet" href="backend/btn-style.css">
<script src="/cookiebanner.js"></script>
<script src="https://houselearning.org/feedback.js"></script>
<script type="module" src="https://www.houselearning.org/also.js"></script>
</head>
<body>
<nav class="navbar">
<div class="navbar-content">
<a href="https://houselearning.org/home/#">Home</a>
<a href="https://houselearning.org/home/math-page.html#">Math Games</a>
<a href="https://houselearning.org/home/science-page.html#">Science Fun</a>
<a href="https://houselearning.org/home/computer-science-page.html#">Coding Challenges</a>
</div>
</nav>
<main class="container">
<div class="auth-card">
<h2 class="verification-title">📧 Verification Sent!</h2>
<p class="verification-message">
A verification link has been sent to the email address you used for signup.
Please check your inbox (and spam folder) and click the link to activate your account.
</p>
<p class="verification-tip">
Once verified, return to the <b>Login Page</b> and sign in!
</p>
<br>
<button class="button-53" id="resend-email-button" role="button">Resend Verification Email</button>
<div id="resend-status-message" class="error-message" style="margin-top: 10px;"></div>
<script src="https://www.gstatic.com/firebasejs/9.6.10/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.10/firebase-auth-compat.js"></script>
</div>
</main>
<script src="backend/app.js"></script>
</body>
</html>