Files
Doctrine-Check/templates/complete.html
2025-12-10 13:27:48 +09:00

18 lines
548 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="step-container">
<div class="complete-message">
<div class="checkmark"></div>
<h2>제출이 완료되었습니다!</h2>
<p>교리점검표가 성공적으로 제출되었습니다.</p>
<p>담당자가 검토 후 연락드리겠습니다.</p>
<div class="form-actions">
<button type="button" class="btn btn-primary" onclick="window.location.href='/'">처음으로</button>
</div>
</div>
</div>
{% endblock %}