Hotel/hotel/rooms/templates/reservation.html

20 lines
356 B
HTML
Raw Normal View History

2019-01-13 20:27:23 +01:00
{% load static %}
2019-01-13 19:10:01 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-01-13 20:27:23 +01:00
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
2019-01-13 19:10:01 +01:00
<meta charset="UTF-8">
2019-01-13 20:27:23 +01:00
<title>Zarezerwowano pokój</title>
2019-01-13 19:10:01 +01:00
</head>
<body>
2019-01-13 20:27:23 +01:00
<br>
<center>
<div id="reservationbox">
{{ status }}
</div>
<br>
<button>Wróć na stronę główną</button>
</center>
2019-01-13 19:10:01 +01:00
</body>
2019-01-13 20:27:23 +01:00
</html>