35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>아버지의마음국 교리점검표</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1>교리점검표</h1>
|
|
<p class="subtitle">기독교대한감리회 선한목자교회 아버지의마음국</p>
|
|
{% if session.get('authenticated') %}
|
|
<div class="header-actions">
|
|
<a href="{{ url_for('logout') }}" class="logout-link">로그아웃</a>
|
|
</div>
|
|
{% endif %}
|
|
</header>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2025 기독교대한감리회 선한목자교회. All rights reserved.</p>
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|
|
|