-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.53 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Spiessli Master 3000</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="bootstrap.min.css" />
<link rel="stylesheet" type="text/css" media="screen" href="styles.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous">
</script>
<script src="main.js"></script>
</head>
<body>
<div class="d-flex flex-column align-items-center">
<h1 class="display-1" style="margin: 50px;">Spiessli Master 3000</h1>
<div class="input-group mb-3" style="width: 80%;">
<input id="nameInput" type="text" class="form-control" placeholder="Gib hier deinen Namen ein" aria-label="Recipient's username" aria-describedby="button-addon2">
<div class="input-group-append">
<button class="btn btn-outline-primary" type="button" id="addPersonButton">Hinzufügen</button>
</div>
</div>
<table id="table" class="table" style="width: 80%;" >
<thead>
<tr>
<th>Name</th>
<th>Timer</th>
</tr>
</thead>
<tbody id="tableBody"></tbody>
</table>
</div>
</body>
</html>