gmao/app_new/templates/setup_wizard/setup_complete.html

21 lines
838 B
HTML
Raw Normal View History

2026-08-14 18:02:25 +02:00
{% 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 %}