-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (105 loc) · 6.09 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="css/fontawesome-all.min.css" rel="stylesheet">
<link href="css/style-was-geht.css" rel="stylesheet">
<title>Benutzerprofil - Münster was geht</title>
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/manifest.json">
<meta name="msapplication-TileImage" content="/favicon/ms-icon-144x144.png">
<style>
#existingUser {display:none}
</style>
</head>
<body>
<div class="container" id="mwg">
<div class="card wasgeht">
<div class="card-body">
<div class="mx-auto text-center" style="width:300px">
<img id="frontpage-logo" src="images/logo-was-geht.jpg" />
<br /><br /><i>Verlieb Dich neu in Deine Stadt!</i><br />Finde Orte und Events, die wirklich zu Dir passen.<br />
</div>
<form>
<div class="text-center" id="frontpage-buttons">
<div id="newUser">
<a href="profile.html" class="btn btn-primary"><i class="fa fa-fw fa-user"></i>Profil anlegen</a>
<a href="start.html" class="btn btn-secondary"><i class="fa fa-fw fa-forward"></i>Direkt starten</a>
</div>
<div id="existingUser">
<a href="start.html" class="btn btn-success"><i class="fa fa-fw fa-forward"></i>Direkt starten</a>
<a href="profile.html" class="btn btn-primary"><i class="fa fa-fw fa-user"></i>Profil bearbeiten</a>
</div>
</div>
</form>
<div class="container" style="margin-top:3rem;margin-bottom:2rem">
<div class="row justify-content-center" style="margin-bottom:2rem">
<div class="col d-flex align-items-stretch col-auto">
<div class="card wasgeht float-right" style="padding:0.5rem;max-width:4rem">
<a href="https://www.muensterhack.de">
<img src="images/logo_muensterhack.png" class="card-img-top" alt="...">
</a>
</div>
</div>
<div class="col d-flex align-items-stretch col-auto">
<div class="card wasgeht" style="padding:0.5rem;max-width:4rem">
<a href="https://github.com/codeformuenster/muenster-was-geht">
<img src="images/logo_github.png" class="card-img-top" alt="...">
</a>
</div>
</div>
</div>
<div class="text-center" style="line-height:1rem">
<small class="text-muted">
Dieses Projekt ist entstanden beim #MSHACK20. Der Quellcode ist Open Source auf Github.
</small>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script>
var existingProfile = localStorage.getItem("profileF");
if (existingProfile) {
$('#existingUser').show();
$('#newUser').hide();
}
</script>
<!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
<script>
(function(f, a, t, h, o, m){
a[h]=a[h]||function(){
(a[h].q=a[h].q||[]).push(arguments)
};
o=f.createElement('script'),
m=f.getElementsByTagName('script')[0];
o.async=1; o.src=t; o.id='fathom-script';
m.parentNode.insertBefore(o,m)
})(document, window, '//tomo.input23.de/tracker.js', 'fathom');
fathom('set', 'siteId', 'LGUEF');
fathom('trackPageview');
</script>
<!-- / Fathom -->
</body>
</html>