mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-07 14:34:33 +00:00
88d68490f3
Author: overcuriousity Co-authored-by: Soxoj <soxoj@protonmail.com>
17 lines
565 B
HTML
17 lines
565 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="container mt-4 text-center">
|
|
<h2>Search in progress...</h2>
|
|
<p>Your request is being processed in the background. This page will automatically redirect once the results are ready.</p>
|
|
<div class="spinner-border text-primary" role="status">
|
|
<span class="visually-hidden">Loading...</span>
|
|
</div>
|
|
<script>
|
|
// Auto-refresh the page every 5 seconds to check completion
|
|
setTimeout(function() {
|
|
window.location.reload();
|
|
}, 5000);
|
|
</script>
|
|
</div>
|
|
{% endblock %}
|