34 lines
1.6 KiB
PHP
34 lines
1.6 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Akses Ditolak - PlantCare</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"/>
|
|
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=DM+Sans:wght@400;500&display=swap" rel="stylesheet"/>
|
|
<style>body { font-family: 'DM Sans', sans-serif; background: #f8f4ee; }</style>
|
|
</head>
|
|
<body class="min-h-screen flex items-center justify-center p-4">
|
|
<div class="text-center max-w-sm">
|
|
<div class="w-24 h-24 rounded-full flex items-center justify-center mx-auto mb-6"
|
|
style="background:#fff0f0;">
|
|
<i class="fas fa-lock text-4xl" style="color:#dc2626;"></i>
|
|
</div>
|
|
<h1 class="text-3xl font-bold mb-2" style="font-family:'Playfair Display',serif;color:#1a3a2a;">
|
|
Akses Ditolak
|
|
</h1>
|
|
<p class="text-sm mb-2" style="color:#5a7a67;">
|
|
Halaman ini hanya dapat diakses oleh <strong>Ahli Tanaman</strong>.
|
|
</p>
|
|
<p class="text-sm mb-8" style="color:#8fa89a;">
|
|
Akun kamu terdaftar sebagai <strong>Petani</strong>.
|
|
</p>
|
|
<a href="{{ url('/dashboard') }}"
|
|
class="inline-block px-6 py-3 rounded-full text-white font-semibold text-sm"
|
|
style="background:#1a3a2a;box-shadow:0 4px 14px rgba(26,58,42,.25);">
|
|
<i class="fas fa-arrow-left mr-2"></i>Kembali ke Dashboard
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html> |