Files
liederwahl/templates/landing.html
matthias@matsewe.de 70c4609252 Clean up
2024-05-24 15:51:07 +02:00

28 lines
717 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Liederwahl</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var s_id = localStorage.getItem('session_id')
if (s_id === null) {
s_id = window.crypto.randomUUID();
localStorage.setItem('session_id', s_id)
}
$('.vote').attr('href', 'vote?session_id=' + s_id);
window.location.href = "/vote?session_id=" + s_id;
});
</script>
</head>
<body>
<div>
<p><a href="" class="vote">Abstimmen</a></p>
</div>
</body>
</html>