50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Shutdown Server</title>
|
|
<style>
|
|
/* Same CSS as index.html */
|
|
/* ... (include CSS from index.html) ... */
|
|
|
|
/* Additional styles */
|
|
.shutdown-warning {
|
|
color: #e74c3c;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: #95a5a6;
|
|
}
|
|
|
|
.btn-danger {
|
|
background-color: #e74c3c;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a href="#main-content" class="skip-link">Skip to main content</a>
|
|
|
|
<div class="container" id="main-content">
|
|
<h1>Shutdown Server</h1>
|
|
|
|
<p class="shutdown-warning" role="alert">Warning: This will completely shut down the upload server.</p>
|
|
<p>Are you sure you want to shut down the server? You can restart it from the system menu if you want to use it again.</p>
|
|
|
|
<div class="button-group">
|
|
<a href="/" class="btn btn-secondary">Cancel</a>
|
|
<form action="/shutdown" method="POST">
|
|
<button type="submit" class="btn btn-danger">Confirm Shutdown</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|