22 lines
692 B
HTML
22 lines
692 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-secondary" onclick="window.location.href='/logout'">로그아웃</button>
|
|
<button type="button" class="btn btn-primary" onclick="window.location.href='/'">처음으로</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|