-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.php
23 lines (22 loc) · 1017 Bytes
/
user.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php if (isset($_SESSION['userID'])) { ?>
<!-- Angemeldet -->
<form class="form-inline">
<ul class="nav navbar-nav pull-lg-right">
<li style="margin-right: 47px;" class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" id="Preview" href="#" role="button" aria-haspopup="true" aria-expanded="false">
<?= showUsername(); ?>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Settings</a>
<a class="dropdown-item" href="#">Listen</a>
</div>
</li>
</ul>
</form>
<?php } else { ?>
<!-- nicht Angemeldet -->
<form class="form-inline">
<a href="/login.php" id="login_button" class="btn btn-success" role="button">Einloggen</a>
<a href="/register.php" id="register_button" class="btn btn-success " role="button">Jetzt Registrieren!</a>
</form>
<?php } ?>