You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
|
|
<title>404 Not Found - warpeka</title>
|
|
<link rel="apple-touch-icon" href="<?php echo e(ASSET); ?>/<?php echo e(LOGO); ?>">
|
|
<link rel="shortcut icon" type="image/x-icon" href="<?php echo e(ASSET); ?>/<?php echo e(LOGO); ?>">
|
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.16/dist/tailwind.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.logo {
|
|
width: 150px;
|
|
height: 150px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.button {
|
|
padding: 10px 20px;
|
|
background-color: #333;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #555;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="flex flex-col items-center">
|
|
<img src="<?php echo e(ASSET); ?>/<?php echo e(LOGO); ?>" alt="Logo" class="logo">
|
|
<h1 class="text-4xl font-bold mb-4">404 Not Found</h1>
|
|
<p class="text-lg text-gray-600 mb-8">Halaman yang Anda cari tidak ditemukan.</p>
|
|
<a href="#/" onclick="window.history.back()" class="button">Kembali</a>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<?php /**PATH /DATA/AppData/warpeka/views/landing/err.blade.php ENDPATH**/ ?>
|