38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PengRegister</title>
|
|
<link rel="stylesheet" href="styles/common.css">
|
|
<link rel="icon" href="imgs/favicon.ico" type="image/x-icon">
|
|
<script src="scripts/common.js" defer></script>
|
|
<script src="scripts/verify.js" defer></script>
|
|
</head>
|
|
|
|
<body id="body" class="body">
|
|
<header id="header" class="blur">
|
|
|
|
</header>
|
|
<main>
|
|
<div class="card blur" id="verify-card">
|
|
<h2>Verify account</h2>
|
|
<p>To verify your account, please enter the verification code sent to your email.</p>
|
|
<button id="verify-button">Verify</button>
|
|
|
|
<a href="/register">Register Page.</a>
|
|
</div>
|
|
|
|
<div class="card blur hidden" id="success-message">
|
|
<h2>Verification Successful!</h2>
|
|
<p>Your email has been successfully verified.</p>
|
|
<a href="/login">Go to Login Page</a>
|
|
</div>
|
|
</main>
|
|
<footer id="footer" class="blur">
|
|
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |