-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
100 lines (94 loc) · 3.16 KB
/
form.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Anmeldung · fAIM</title>
<script src="jquery-3.5.1.min.js"></script>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="bulma-0.9.1.min.css">
<link rel="stylesheet" href="styles.css">
<style type="text/css">
#total-form {
margin-top: 2em;
margin-bottom: 2em;
}
.time-cols div {
padding-top: 2px;
padding-bottom: 2px;
}
#sliderval {
font-size: 0.9em;
padding-right: 2em;
}
.particips {
color: #aaaaaa;
padding-left: 1em;
}
#lang-en {
background-color:#fcfcfc;
}
#fadeout-en {
color:#aaaaaa;
}
#textfoot {
margin-top: 2em;
}
</style>
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar has-shadow" role="navigation" aria-label="main navigation" id="navb">
<div class="navbar-brand">
<a class="navbar-item" href="https://aim.mathphys.info/">
<img src="weblogo.png">
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="faim-navbar-menu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="faim-navbar-menu" class="navbar-menu is-fixed">
<div class="navbar-start">
<a class="navbar-item is-secondary" href="index.html">
Übersicht
</a>
<a class="navbar-item is-secondary" href="zeitplan.html">
Zeitplan
</a>
</div>
<div class="navbar-end">
<a class="navbar-item is-secondary" href="impressum.html">
Impressum
</a>
<a class="navbar-item is-secondary" href="kontakt.html">
Kontakt
</a>
<a class="navbar-item is-secondary" id="lang-de">
<img src="de.svg" width="18px" /> Deutsch
</a>
<a class="navbar-item is-secondary" id="lang-en">
<img src="en.svg" width="18px" /> <span id="fadeout-en">English</span>
</a>
</div>
</div>
</nav>
<div id="page-content">
<!-- Header -->
<div id="header">
<div id="title" class="aim-title">
<h2>Anmeldung zur fAIM</h2>
</div>
<div id="welcome">
<p>Danke für Ihr Interesse an der fern-ArbeitsgruppenInspitationsMesse! Leider ist die Anmeldung nicht mehr möglich. Wenn Sie möchten, können Sie natürlich dennoch spontan vorbeikommen und in einer der "Kaffeeecken" mit den Studierenden plaudern.</p>
<hr />
<p>Thank you for your interest in the Working Group Fair (fAIM). Unfortunately, registration for the event is closed. However, you can always stop by spontaneously and chat with students in one of the "Coffee break rooms".</p>
</div>
</div>
<div class="is-full" id="textfoot">
<p>© Fachschaft MathPhysInfo 2021 · <a href="impressum.html">Impressum</a> · <a href="kontakt.html">Kontakt</a></p>
</div>
</div>
</body>
</html>