mirror of
https://github.com/mivodev/plugin-mivo-theme.git
synced 2026-01-26 05:15:27 +07:00
52 lines
2.6 KiB
HTML
52 lines
2.6 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>
|
|
|
|
<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-amber-500/10 text-amber-500 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="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"></path></svg>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="space-y-2">
|
|
<h1 class="text-xl font-bold tracking-tight">Login Required</h1>
|
|
<p class="text-slate-500 text-sm">Redirecting to login page...</p>
|
|
$(if http-status == 302)<p class="text-xs text-amber-500">Hotspot login required</p>$(endif)
|
|
</div>
|
|
|
|
<p class="text-xs text-slate-400">
|
|
If not redirected, <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>
|
|
|
|
<!-- Redirect Logic -->
|
|
$(if http-header == "Location")$(link-redirect)$(endif)
|
|
<meta http-equiv="refresh" content="2; url=$(link-redirect)">
|
|
<script>
|
|
setTimeout(function() {
|
|
window.location.href = '$(link-redirect)';
|
|
}, 2000);
|
|
</script>
|
|
</body>
|
|
</html>
|