63 lines
1.6 KiB
PHP
63 lines
1.6 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Verifikasi Gagal - Jaga Jalan</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #f5f5f5;
|
|
margin: 0;
|
|
padding: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
.container {
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
max-width: 400px;
|
|
width: 100%;
|
|
}
|
|
.error-icon {
|
|
color: #f44336;
|
|
font-size: 64px;
|
|
margin-bottom: 20px;
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
margin-bottom: 15px;
|
|
}
|
|
p {
|
|
color: #666;
|
|
margin-bottom: 25px;
|
|
line-height: 1.5;
|
|
}
|
|
.button {
|
|
background-color: #f44336;
|
|
color: white;
|
|
padding: 12px 24px;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
transition: background-color 0.3s;
|
|
}
|
|
.button:hover {
|
|
background-color: #da190b;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="error-icon">✕</div>
|
|
<h1>Verifikasi Gagal</h1>
|
|
<p>{{ $message }}</p>
|
|
<a href="" class="button">Silahkan Kembali ke Aplikasi</a>
|
|
</div>
|
|
</body>
|
|
</html>
|