gmao/app_new/templates/setup_wizard/setup_complete.html
2026-08-14 16:02:25 +00:00

21 lines
No EOL
838 B
HTML

{% extends "base.html" %}
{% block title %}Configuration terminée — GMAO{% endblock %}
{% block content %}
<div class="container-fluid py-5">
<div class="row justify-content-center">
<div class="col-md-6 text-center">
<div class="card shadow">
<div class="card-body py-5">
<i class="bi bi-check-circle-fill text-success" style="font-size: 4rem;"></i>
<h2 class="mt-4">Configuration terminée</h2>
<p class="text-muted">Le système GMAO a déjà été configuré.</p>
<a href="{{ url_for('companies.index') }}" class="btn btn-primary mt-3">
<i class="bi bi-house"></i> Accueil
</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}