105 lines
2.4 KiB
PHP
105 lines
2.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: "Arial", sans-serif;
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.card {
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
padding: 20px;
|
|
max-width: 400px;
|
|
width: 100%;
|
|
}
|
|
|
|
.card-rekber {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.large-text {
|
|
font-size: 3.5em;
|
|
font-weight: bold;
|
|
color: #b61754;
|
|
}
|
|
|
|
.small-text {
|
|
font-size: 0.8em;
|
|
color: #888;
|
|
}
|
|
|
|
.code-verifikasi,
|
|
.code,
|
|
.masa-berlaku {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.code-pendaftaran {
|
|
background-color: #b61754;
|
|
color: #fff;
|
|
text-align: center;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
font-size: 3.5em;
|
|
margin: 10px 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.card {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-rekber">
|
|
<p class="large-text">Rekber</p>
|
|
<span class="small-text">Verifkasi Email</span>
|
|
</div>
|
|
|
|
<div class="code-verifikasi">
|
|
<p>Rekber mengirimkan kode verifikasi</p>
|
|
<p><b>{{ $verificationEmail['email'] }}</b></p>
|
|
</div>
|
|
|
|
<div class="code">
|
|
<p>Gunakan kode ini untuk menyelesaikan syarat pendaftaraan akun:</p>
|
|
</div>
|
|
|
|
<div class="code-pendaftaran">
|
|
<p>{{ $verificationEmail['code'] }}</p>
|
|
</div>
|
|
|
|
<div class="masa-berlaku">
|
|
<p>Masa berlaku kode ini akan berakhir dalam 2 menit.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|