Spaces:
Sleeping
Sleeping
| <html lang="ja"> | |
| <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="header"> | |
| <img src="{{ url_for('static', filename='logo.png') }}" alt="チームロゴ" class="logo"> | |
| <h1>アルバイト情報サイト</h1> | |
| </div> | |
| <div class="container"> | |
| <h2>ソファシート</h2> | |
| <p>こども広場は親と未就学児の同伴であれば利用可能。チケット確認は不要。人数制限あり(10組20名程度)</p> | |
| <p>エリア内の食事は×、飲料は○</p> | |
| <hr> | |
| <p></p> | |
| <a href="{{ url_for('home') }}" class="btn">ホームに戻る</a> | |
| <br><br> | |
| <a href="{{ url_for('logout') }}" class="logout-link">ログアウトする</a> | |
| </div> | |
| <script src="{{ url_for('static', filename='main.js') }}"></script> | |
| </body> | |
| </html> |