33 lines
881 B
HTML
33 lines
881 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>Formularz rezerwacji</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>
|
|
</head>
|
|
<body onLoad="changeBackground(imageUrl = localStorage.backgroundImage)">
|
|
<br>
|
|
<center>
|
|
<h1>Formularz rezerwacji</h1>
|
|
<div id="reservationform">
|
|
<form action="" method="post">
|
|
{{ error }}
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Rezerwuj">
|
|
</form>
|
|
</center>
|
|
</div>
|
|
</body>
|
|
</html>
|