Hotel/hotel/rooms/templates/reservation.html

29 lines
800 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">
<title>Rezerwacja</title>
<script>
function changeBackground(imageUrl) {
if(imageUrl != null) {
document.body.style.background = "url(" + imageUrl + ") no-repeat center center fixed";
document.body.style.backgroundSize = "cover";
localStorage.backgroundImage = imageUrl;
}
}
</script>
2019-01-13 19:10:01 +01:00
</head>
<body onLoad="changeBackground(imageUrl = localStorage.backgroundImage)">
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>