Files
Warracker/frontend/settings.html
sassanix ad24a76d9a Fixed Admin Settings
Refer to changelogs
2025-03-14 08:33:18 -03:00

50 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="0;url=settings-new.html">
<title>Redirecting to Settings</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background-color: #f5f5f5;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
color: #666;
margin-bottom: 20px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Redirecting to Settings</h1>
<p>You are being redirected to the new settings page.</p>
<p>If you are not redirected automatically, <a href="settings-new.html">click here</a>.</p>
</div>
<script>
// JavaScript redirect as a fallback
window.location.href = "settings-new.html";
</script>
</body>
</html>