mirror of
https://github.com/sassanix/Warracker.git
synced 2026-01-05 13:09:32 -06:00
Major update to the UI, lots of fixes, about page added, please refer to changelog for more details
51 lines
1.4 KiB
HTML
51 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">
|
|
<meta http-equiv="refresh" content="0;url=settings-new.html">
|
|
<title>Redirecting to Settings</title>
|
|
<script src="theme-loader.js"></script> <!-- Apply theme early -->
|
|
<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> |