Page 544 - MDP2022-3
P. 544
<div style="margin-top: 30px;"></div>
<h2 class="fs-4 fw-bold">자리<br>(1)</h2>
<p class="mb-0 fs-5">
예약 상태 : {% if led_states['red4'] == 0 %} 예약됨
{% elif led_states['red4'] == 1 %} 예약되지 않음
{% endif %}</p><br>
<a class="btn btn-primary" href="{{ url_for('all_on_off4', state = 0)
}}">예약</a>
<a class="btn btn-primary" href="{{ url_for('all_on_off4', state = 1)
}}">취소</a>
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-xxl-4 mb-5">
<div class="card bg-light border-0 h-100">
<div class="card-body text-center p-4 p-lg-5 pt-0 pt-lg-0">
<div style="margin-top: 30px;"></div>
<h2 class="fs-4 fw-bold">자리<br>(2)</h2>
<p class="mb-0 fs-5">
예약 상태 : {% if led_states['red5'] == 0 %} 예약됨
{% elif led_states['red5'] == 1 %} 예약되지 않음
{% endif %}</p><br>
<a class="btn btn-primary" href="{{ url_for('all_on_off5', state = 0)
}}">예약</a>
<a class="btn btn-primary" href="{{ url_for('all_on_off5', state = 1)
}}">취소</a>
</div>
</div>
</div>
</div>
</div>
</section>
<div style="margin-right: 100px; text-align: right;">
<a href="/"><input class="btn btn-primary btn-lg" type="button" value="홈"></a>
<input class="btn btn-primary btn-lg" type="button" value="창닫기"onClick='window.close()'>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="../static/scripts.js"></script>
</body>
</html>
9.<index.html>
<!DOCTYPE html>
<html lang="ko">
<head>