20 lines
637 B
HTML
20 lines
637 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>You're connected!</h1>
|
|
<p>Welcome to {{ site.name }} Guest WiFi.</p>
|
|
<p>Your device has been authorized for <strong>{{ duration_hours }} hours</strong>.</p>
|
|
<p style="color: #999; font-size: 0.85rem;">This window will close in <span id="countdown">15</span> seconds...</p>
|
|
<script>
|
|
let seconds = 15;
|
|
const el = document.getElementById('countdown');
|
|
const timer = setInterval(() => {
|
|
seconds--;
|
|
el.textContent = seconds;
|
|
if (seconds <= 0) {
|
|
clearInterval(timer);
|
|
window.close();
|
|
}
|
|
}, 1000);
|
|
</script>
|
|
{% endblock %}
|