-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 982 Bytes
/
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
<!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>Online-Teilnehmerliste</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<main>
<h1>Teilnehmer*innen-Liste</h1>
<form action="">
<input
type="text"
name="memberList"
id="name"
placeholder="Name*"
required
/>
<input type="submit" value="hinzufügen" onclick="pushElement(event)" />
<input type="reset" value="rückgängig" onclick="removeElement(event)" />
</form>
<div>
<h2>Aktuelle Teilnehmer*innen</h2>
<ul class="listItems">
<li>keine Teilnehmer*innen</li>
</ul>
</div>
<h3>Anzahl: 0</h3>
</main>
<script src="./assets/js/main.js"></script>
</body>
</html>