Page Title
<!DOCTYPE html>
<html>
<head>
<title>Resepsiyon Uygulaması</title>
</head>
<body>
<h1>Misafir Yönetimi</h1>
<h2>Giriş Yap</h2>
<form method="POST" action="/checkin">
<label>İsim:</label>
<input type="text" name="name" required>
<label>Oda No:</label>
<input type="number" name="room_number" required>
<button type="submit">Giriş Yap</button>
</form>
<h2>Misafirler</h2>
<ul>
{% for guest in guests %}
<li>
İsim: {{ guest[1] }}, Oda: {{ guest[2]}, Giriş: {{ guest[3]}}, Çıkış: {{ guest[4] or 'Henüz çıkış yapılmadı.' }}
<form method="POST" action="/checkout/{{ guest[0] }}">
<button type="submit">Çıkış Yap</button>
</form>
</li>
{% endfor %}
</ul>
</body>
</html>
Section Title
This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.
List Title
This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.
List Title
This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.
List Title
This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.
List Title
This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.