kashima-backstand / templates /backstand_inside.html
Taical's picture
Upload 24 files
1155486 verified
<!DOCTYPE html>
<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>作業内容:異なる席種間を移動していないか確認する。</p>
<p>試合開始30分前から片膝立ち</p>
<p>2か所を3人で運用する</p>
<p>試合終了後、座席清掃</p>
<hr>
<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>