20 lines
388 B
HTML
20 lines
388 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
|
|
<meta charset="UTF-8">
|
|
<title>Zarezerwowano pokój</title>
|
|
</head>
|
|
<body>
|
|
<br>
|
|
<center>
|
|
<div id="reservationbox">
|
|
{{ status }}
|
|
</div>
|
|
<br>
|
|
<a href="{% url 'index' %}"><button>Wróć na stronę główną</button></a>
|
|
</center>
|
|
</body>
|
|
</html>
|