-
Notifications
You must be signed in to change notification settings - Fork 3
/
home.php
32 lines (31 loc) · 1.04 KB
/
home.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<div class="clear"></div>
<div class="body">
<h2>Vítejte!</h2>
<p>
Pro vstup do hlasovací místnosti zadejte prosím kód, který Vám sdělil Váš vyučující:
</p>
<div class="mezera"></div>
<div class="vstoupit-div">
<form method="POST" action="index.php?page=voting">
<?php
// Ensure SESSION is clear before entering voting, otherwise bad things may happen
if (function_exists('clear_session'))
{
clear_session();
}
if (!isset($_COOKIE["computer_id"]))
{
echo '<strong>Identifikační číslo počítače není nastaveno, kontaktujte správce a nebo jej vyplňte ručně!</strong>
<br>
<input class="kod" type="text" name="voting_user" size="20" placeholder="Číslo PC">';
}
?>
<input class="kod" type="text" name="voting_code" size="20" placeholder="Kód k hlasování" autocomplete="off">
<div class="mezera"></div>
<input class="vstoupit" type="submit" value="Vstoupit do hlasování" name="JPW">
</form>
</div>
<div class="mezera"></div>
</div>
<div style="height: 30px;"></div>
<img src="img/logo_GK.png" alt="logo" id="logo">