first commit

This commit is contained in:
peregr1nus
2025-12-10 13:27:48 +09:00
commit 8019a7e4ba
19 changed files with 2028 additions and 0 deletions

17
templates/complete.html Normal file
View File

@@ -0,0 +1,17 @@
{% 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 %}