2019-12-06 18:34:19 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.14.0.css">
|
|
|
|
<link rel="stylesheet" href="jquery.seat-charts.css">
|
|
|
|
<script src="http://code.jquery.com/qunit/qunit-1.14.0.js"></script>
|
|
|
|
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
|
|
|
|
<script type="text/javascript" src="jquery.seat-charts.min.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="seatchart.css">
|
|
|
|
<script type="text/javascript" src="seatchart.js"></script>
|
|
|
|
<title>@CHECK</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
|
|
|
<div class="seat-chart-wrapper">
|
|
|
|
<div id="seat-map">
|
|
|
|
<div class="front-indicator">SALA X</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<div class='seat-stat-wrapper'>
|
|
|
|
<div id="legend">
|
|
|
|
</div>
|
|
|
|
<div class="booking-details">
|
2019-12-07 11:56:51 +01:00
|
|
|
<h2 id="studentName">Anna Kowalska</h2>
|
2019-12-06 18:34:19 +01:00
|
|
|
|
|
|
|
<h3>Wybrane miejsce:</h3>
|
|
|
|
<ul id="selected-seats"></ul>
|
|
|
|
|
|
|
|
<button class="checkout-button" onclick="goToKoncowa()">Zapisz »</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
function goToKoncowa() {
|
|
|
|
window.location = "koncowastrona.html";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</html>
|