122 lines
3.5 KiB
PHP
122 lines
3.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Verifikasi Email Berhasil - TailorHub</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background-color: #f5f7fa;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
background-color: #ffffff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
margin: 20px;
|
|
width: 100%;
|
|
}
|
|
.header {
|
|
background-color: #2196F3;
|
|
color: white;
|
|
padding: 30px;
|
|
text-align: center;
|
|
}
|
|
.header h1 {
|
|
margin: 0;
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
}
|
|
.content {
|
|
padding: 30px;
|
|
text-align: center;
|
|
}
|
|
.success-icon {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: #4CAF50;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0 auto 20px;
|
|
}
|
|
.success-icon svg {
|
|
width: 60px;
|
|
height: 60px;
|
|
fill: white;
|
|
}
|
|
.message {
|
|
font-size: 18px;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
}
|
|
.user-info {
|
|
background-color: #f5f7fa;
|
|
border-radius: 8px;
|
|
padding: 15px;
|
|
margin-bottom: 20px;
|
|
text-align: left;
|
|
}
|
|
.user-info p {
|
|
margin: 5px 0;
|
|
font-size: 14px;
|
|
color: #555;
|
|
}
|
|
.user-info strong {
|
|
color: #333;
|
|
}
|
|
.footer {
|
|
padding: 20px;
|
|
text-align: center;
|
|
color: #777;
|
|
font-size: 12px;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>TailorHub</h1>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="success-icon">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
<path d="M0 0h24v24H0V0z" fill="none"/>
|
|
<path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/>
|
|
</svg>
|
|
</div>
|
|
|
|
<h2>Verifikasi Email Berhasil!</h2>
|
|
|
|
<div class="message">
|
|
{{ $message }}
|
|
</div>
|
|
|
|
<div class="user-info">
|
|
<p><strong>Nama:</strong> {{ $user->name }}</p>
|
|
<p><strong>Email:</strong> {{ $user->email }}</p>
|
|
<p><strong>Peran:</strong> {{ ucfirst($user->role) }}</p>
|
|
</div>
|
|
|
|
<p>Sekarang Anda dapat menggunakan semua fitur TailorHub.</p>
|
|
<p>Silakan tutup halaman ini dan kembali ke aplikasi.</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>© {{ date('Y') }} TailorHub. Semua hak dilindungi undang-undang.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|