81 lines
2.6 KiB
HTML
81 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>访问失败 - 网盘外链</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #f5f5f5;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.main-content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding: 40px 0;
|
|
}
|
|
.card {
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
.card-header {
|
|
background-color: #dc3545;
|
|
color: white;
|
|
font-weight: bold;
|
|
padding: 15px 20px;
|
|
}
|
|
.error-icon {
|
|
font-size: 4rem;
|
|
color: #dc3545;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
padding: 20px;
|
|
background-color: #f8f9fa;
|
|
color: #6c757d;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container main-content">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8 col-lg-6">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<span>访问失败</span>
|
|
</div>
|
|
<div class="card-body text-center">
|
|
<div class="error-icon">
|
|
<i class="bi bi-exclamation-circle"></i>
|
|
</div>
|
|
<h5 class="card-title">无法访问网盘外链</h5>
|
|
<p class="card-text">{{ message }}</p>
|
|
|
|
<div class="d-grid gap-2 mt-4">
|
|
<a href="/" class="btn btn-primary">
|
|
<i class="bi bi-house me-2"></i>返回首页
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<p class="mb-0">网盘租户系统 © 2023</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |