79 lines
1.7 KiB
HTML
79 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Verifikasi Akun</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
background-color: #f5f7fa;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.box {
|
|
background-color: white;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
max-width: 400px;
|
|
}
|
|
|
|
h2 {
|
|
color: #333;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
color: #666;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.loading {
|
|
margin: 30px auto;
|
|
border: 4px solid #f3f3f3;
|
|
border-top: 4px solid #e74c3c;
|
|
border-radius: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
.login-link {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
padding: 10px 20px;
|
|
background-color: #e74c3c;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.login-link:hover {
|
|
background-color: #c0392b;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<h2>Menunggu Verifikasi</h2>
|
|
<p>Akun kamu sedang diverifikasi oleh petugas Adhoc. Mohon tunggu beberapa saat.</p>
|
|
<div class="loading"></div>
|
|
<a href="login.html" class="login-link">Kembali ke Login</a>
|
|
</div>
|
|
</body>
|
|
</html>
|