-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.html
39 lines (36 loc) · 1.41 KB
/
go.html
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Schülersprecherwahl Abstimmung</title>
<link rel="stylesheet" href="css/votestyle.css" type="text/css" media="all"/>
<link rel="icon" type="image/png" sizes="32x32"
href="https://www.birklehof.de/wp-content/themes/birklehof-v2/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16"
href="https://www.birklehof.de/wp-content/themes/birklehof-v2/favicon/favicon-16x16.png">
</head>
<body>
<section class="vote-form">
<div class="container">
<label class="wrapper">
<a class="check">Aaron, Tung, Xavier</a>
<input type="radio" name="radio" value="Aaron">
<span class="checkmark"></span>
</label>
<label class="wrapper">
<a class="check">Annika, Frederik, NéNé</a>
<input type="radio" name="radio" value="Annika">
<span class="checkmark"></span>
</label>
<label class="wrapper">
<a class="check">Enthalten</a>
<input type="radio" name="radio" value="Enthalten">
<span class="checkmark"></span>
</label>
<button onclick="handleSubmit()" id="submit" type="submit">Wählen</button>
</div>
</section>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/vote.js"></script>
</html>