-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="static/style.css">
<title>Feedbacksystem</title>
<style>
a {
cursor: pointer;
}
li#pairing {
display: none;
}
</style>
</head>
<body>
<header id="page-header">
<div class="grid-container">
<div class="grid-x grid-padding-x align-middle">
<div class="cell medium-2">
<a href="/" id="page-logo" class="foo">
<img alt="ESE2020" title="ESE2020" src="static/logo.svg">
</a>
</div>
<div class="cell medium-10">
</div>
</div>
</header>
<main id="page-content" class="grid-container">
<ul>
{{ range $elem := .Str }}
<li style="margin-left: 2rem;">{{ $elem }}</li>
{{ end }}
</ul>
<h2 style="margin-left: 2rem;"> Gib uns Feedback: </h2>
<p style="margin-left: 2rem;"> Dein Text wird öffentlich auf dieser Seite erscheinen!</p>
<form style="margin-left: 2rem;" method="post" action="/post">
<label>Text:</label></br>
<textarea cols=60 id="feedback" name="feedback"></textarea>
<p>
<input value="Feedback absenden" type="submit">
</p>
</form>
</main>
<footer id="page-footer">
<div class="grid-container">
<div class="grid-x grid-padding-x">
<div class="cell medium-4">
</div>
<div class="cell medium-8">
</div>
</div>
</div>
</footer>
</body>
</html>