syifa-laravel/resources/views/siswa/notfound.blade.php

61 lines
1.4 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<title>Data Siswa Tidak Ditemukan</title>
<style>
body {
background: linear-gradient(to bottom right, #92e2f2, #b0d9f8);
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.text-center {
text-align: center;
margin-top: 50px;
}
h2 {
color: #2c3e50;
background-color: #ecf6fd;
padding: 20px;
border-radius: 15px;
display: inline-block;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn {
background-color: #3498db;
color: white;
padding: 10px 20px;
border: none;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease, transform 0.2s ease;
display: inline-block;
}
.btn:hover {
background-color: #2980b9;
transform: scale(1.05);
}
.mt-3 {
margin-top: 1rem;
}
.mt-5 {
margin-top: 3rem;
}
</style>
</head>
<body>
<div class="text-center mt-5">
<h2>Data siswa dengan ID {{ $id }} tidak ditemukan</h2>
<br>
<a href="{{ route('siswa.index') }}" class="btn mt-3">Kembali ke daftar siswa</a>
</div>
</body>
</html>