source: target/classes/templates/voting_code.html@ ac151d1

main
Last change on this file since ac151d1 was ac151d1, checked in by David <darsov2@…>, 11 days ago

initial

  • Property mode set to 100644
File size: 897 bytes
Line 
1<style>
2 h2 {
3 color: #333;
4 }
5
6 h3 {
7 color: #555;
8 font-size: 24px;
9 margin-top: 10px;
10 }
11</style>
12
13
14<nav class="navbar bg-secondary bg-gradient container-fluid px-0">
15 <div class="container-fluid">
16 <span class="navbar-brand mb-0 h1">Податоци за гласачите - код за електронско гласање со физичко присуство</span>
17 </div>
18</nav>
19
20<div class="container shadow p-3 mb-5 bg-body-tertiary rounded my-3 text-center d-flex flex-column align-items-center">
21 <h2>Код за гласач: </h2>
22 <h3 th:text="${code.code}"></h3>
23 <div id="qrcode"></div>
24 <script th:inline="javascript" type="text/javascript">
25 var codeValue = /*[[${code.code}]]*/ '';
26 console.log(codeValue)
27 new QRCode(document.getElementById("qrcode"), codeValue);
28 </script>
29</div>
30
Note: See TracBrowser for help on using the repository browser.