mirror of
https://github.com/mivodev/plugin-mivo-theme.git
synced 2026-01-26 05:15:27 +07:00
58 lines
2.7 KiB
HTML
58 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="pragma" content="no-cache">
|
|
<meta http-equiv="expires" content="-1">
|
|
<link rel="icon" href="favicon.ico">
|
|
<link rel="stylesheet" href="assets/css/styles.css">
|
|
<script defer="" src="assets/js/alpine.min.js"></script>
|
|
<script src="assets/js/main.js"></script>
|
|
<script src="assets/js/theme.js"></script>
|
|
<script src="assets/js/i18n.js"></script>
|
|
|
|
<script>
|
|
if (localStorage.getItem('mivo_theme') === 'dark' || (!localStorage.getItem('mivo_theme') && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
|
document.documentElement.classList.add('dark');
|
|
} else {
|
|
document.documentElement.classList.remove('dark');
|
|
}
|
|
</script>
|
|
<body class="antialiased bg-background text-foreground bg-cover bg-center min-h-screen flex items-center justify-center p-4 selection:bg-accent selection:text-white overflow-hidden" x-data="theme" :class="theme" :style="'background-image: url(\'assets/img/' + (theme === 'light' ? 'bg-light.jpg' : 'bg-dark.jpg') + '\');'">
|
|
|
|
<div class="fixed inset-0 bg-background/30 backdrop-blur-sm z-0"></div>
|
|
|
|
<div class="relative z-10 w-full max-w-sm">
|
|
<div class="card p-8 text-center space-y-6">
|
|
<div class="flex justify-center">
|
|
<div class="relative w-16 h-16 flex items-center justify-center rounded-2xl bg-primary/10 text-primary animate-pulse">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l14 0"></path><path d="M13 18l6 -6"></path><path d="M13 6l6 6"></path></svg>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="space-y-2">
|
|
<h1 class="text-xl font-bold tracking-tight">Redirecting...</h1>
|
|
<p class="text-slate-500 text-sm">You are being redirected to your destination.</p>
|
|
</div>
|
|
|
|
<p class="text-xs text-slate-400">
|
|
If you are not redirected automatically, <a href="$(link-redirect)" class="text-primary hover:underline font-medium">click here</a>.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="mt-8 pt-8 border-t border-accents-2 dark:border-white/10">
|
|
<p class="text-accents-5 text-[10px] tracking-widest uppercase">MIVO THEME BY DYZULKDEV • POWERED BY MIVO</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Mikrotik Redirect Logic -->
|
|
<meta http-equiv="refresh" content="2; url=$(link-redirect)">
|
|
<script>
|
|
setTimeout(function() {
|
|
window.location.href = '$(link-redirect)';
|
|
}, 2000);
|
|
</script>
|
|
</body>
|
|
</html>
|