118 lines
2.5 KiB
HTML
118 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-Hant">
|
|
<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.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
|
|
<style>
|
|
body {
|
|
background-color: #f7f8fa;
|
|
font-family: 'Noto Sans TC', sans-serif;
|
|
}
|
|
|
|
header {
|
|
background-color: #9eaf9f;
|
|
color: #fff;
|
|
padding: 16px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.back-button {
|
|
position: absolute;
|
|
top: 12px;
|
|
left: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.back-button img {
|
|
width: 24px;
|
|
height: 24px;
|
|
filter: brightness(0) invert(1);
|
|
}
|
|
|
|
.waiting-container {
|
|
background-color: #fff;
|
|
margin: 20px;
|
|
padding: 30px 20px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
}
|
|
|
|
.waiting-container h4 {
|
|
margin-bottom: 20px;
|
|
font-size: 22px;
|
|
color: #333;
|
|
}
|
|
|
|
.waiting-container p {
|
|
font-size: 16px;
|
|
color: #666;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.waiting-button {
|
|
background-color: #4caf50;
|
|
color: white;
|
|
border: none;
|
|
padding: 12px;
|
|
width: 100%;
|
|
border-radius: 24px;
|
|
font-size: 16px;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.waiting-button:hover {
|
|
background-color: #388e3c;
|
|
}
|
|
|
|
.footer-nav {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: #fff;
|
|
border-top: 1px solid #ddd;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.footer-nav a {
|
|
text-decoration: none;
|
|
font-size: 12px;
|
|
color: #666;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-nav img {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-bottom: 4px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<div class="back-button">
|
|
<img src="https://img.icons8.com/ios-filled/50/ffffff/left.png" alt="返回" title="回上一頁" onclick="history.back()" />
|
|
</div>
|
|
等待管理員驗證
|
|
</header>
|
|
|
|
<div class="waiting-container">
|
|
<h4>親愛的用戶您好</h4>
|
|
<p>您的新用戶申請已送至管理室,請您拿手機至管理室由管理員掃描開通。</p>
|
|
<button class="waiting-button" onclick="location.href='scan_activate.html'">掃描開通</button>
|
|
</div>
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
</body>
|
|
</html> |