82 lines
2.1 KiB
PHP
82 lines
2.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>404 Not Found - FiberID</title>
|
|
<link rel="stylesheet" href="vendors/css/vendor.bundle.base.css">
|
|
<link rel="shortcut icon" href="images/myn.png" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #ffffffff;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0;
|
|
font-family: 'Inter', sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
.illustration {
|
|
max-width: 100%;
|
|
width: 600px; /* Adjust based on image size */
|
|
height: auto;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.error-title {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: #2c2e33;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.error-message {
|
|
font-size: 15px;
|
|
color: #6c7383;
|
|
margin-bottom: 35px;
|
|
max-width: 450px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.btn-go-back {
|
|
background-color: #4B49AC;
|
|
color: #ffffff;
|
|
padding: 12px 30px;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
text-decoration: none;
|
|
transition: background-color 0.3s ease, transform 0.2s ease;
|
|
display: inline-block;
|
|
border: none;
|
|
}
|
|
|
|
.btn-go-back:hover {
|
|
background-color: #3f3e91;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
transform: translateY(-2px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- 404 Illustration -->
|
|
<img src="images/404_illustration.png" alt="404 Illustration" class="illustration">
|
|
|
|
<!-- Text Content -->
|
|
<div class="error-title">This Page Does Not Exist</div>
|
|
<div class="error-message">
|
|
Sorry, the page you are looking for could not be found. It's just an accident that was not intentional.
|
|
</div>
|
|
|
|
<!-- Go Back Button -->
|
|
<a href="https://identia.montaklo.id/" class="btn-go-back">Go back</a>
|
|
|
|
</body>
|
|
</html>
|