This repository was archived by the owner on May 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvoteComplete.php
More file actions
50 lines (50 loc) · 1.49 KB
/
voteComplete.php
File metadata and controls
50 lines (50 loc) · 1.49 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ASE | Fel</title>
</head>
<body>
<div class="fullscreen-bg">
<video loop muted autoplay class="fullscreen-bg__video">
<source src="./assets/videos/background.mp4" type="video/mp4">
</video>
</div>
<div id="content">
<nav class="header">
<h1>Arma Sweden</h1>
</nav>
<section class="msg">
<h1>Dina val har nu skickats in</h1>
<p class="text">
<?php
if (isset($_GET['editCode'])) {
echo "Var vänlig spara din unika omröstningskod:";
} else {
echo 'Du har nu skickat in dina val.';
}
?>
</p>
<?php
if (isset($_GET['editCode'])) {
echo "<h1>{$_GET['editCode']}</h1>";
}
?>
<p class="text">Omröstningskoden är anonym, och används enbart ifall något har gått snett under omröstningen. Koden kan ej kopplas till ditt konto.</p>
</section>
<section class="prompt">
<div id="vote-btn">
<button onclick="window.location.href='results.php'" id="confirm-btn">Till resultatsida</button>
</div>
</section>
<nav class="footer">
<p>
Denna sida har skapats för <a href="https://armasweden.se">Arma Sweden</a>
</p>
</nav>
</div>
</body>
</html>
<link rel="stylesheet" href="assets/css/style.css">