Hotel/hotel/rooms/templates/reservation.html

20 lines
388 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>
2019-01-13 20:35:24 +01:00
<a href="{% url 'index' %}"><button>Wróć na stronę główną</button></a>
2019-01-13 20:27:23 +01:00
</center>
2019-01-13 19:10:01 +01:00
</body>
2019-01-13 20:27:23 +01:00
</html>