atcheck/mapka/STUDENT/seatchart.html

43 lines
1.3 KiB
HTML

<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">
<h2 id="studentName">Anna Kowalska</h2>
<h3>Wybrane miejsce:</h3>
<ul id="selected-seats"></ul>
<button class="checkout-button" onclick="goToKoncowa()">Zapisz &raquo;</button>
</div>
</div>
</div>
</body>
<script>
function goToKoncowa() {
window.location = "koncowastrona.html";
}
</script>
</html>