-
Notifications
You must be signed in to change notification settings - Fork 4
/
h.php
71 lines (60 loc) · 2.87 KB
/
h.php
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
<?php
/*
Copyright 2020 FWBer.com
This file is part of FWBer.
FWBer is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
FWBer is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero Public License for more details.
You should have received a copy of the GNU Affero Public License
along with FWBer. If not, see <https://www.gnu.org/licenses/>.
*/
?>
<?php
require_once("_init.php");
validateSessionOrCookiesReturnLoggedIn();
$logged_in=false;
if(isCookieSet())$logged_in=true;
if($logged_in==false) {
?>
<main role="main" class="flex-shrink-0 my-auto">
<div class="">
<header>
<nav class="site-header navbar navbar-expand-sm fixed-top py-1">
<a class="navbar-brand mr-auto" href="<?php echo getSiteURL();?>"><img src="/images/fwber_logo_icon.png" alt="fwber" id="fwber_logo_img" height="50" border="0" style="border:0px;position:absolute;left:10px;top:4px; z-index:1;"></a>
<div class="" id="">
<ul class="navbar-nav" style="-ms-flex-direction:row;flex-direction:row;">
<li class="nav-item">
<a class="nav-link btn btn-outline-secondary my-0 px-3 mx-1" href="/signin">Sign In</a>
</li>
<li class="nav-item">
<a class="nav-link btn btn-outline-secondary my-0 px-3 mx-1" href="/join">Join Now</a>
</li>
</ul>
</div>
</nav>
</header>
<?php } else {?>
<header>
<nav class="site-header navbar navbar-expand-sm fixed-top py-1">
<a class="navbar-brand mr-auto" href="<?php echo getSiteURL();?>"><img src="/images/fwber_logo_icon.png" alt="fwber" id="fwber_logo_img" height="50" border="0" style="border:0px;position:absolute;left:30px;top:0px; z-index:1;"></a>
<div class="" id="">
<ul class="navbar-nav" style="-ms-flex-direction:row;flex-direction:row;">
<li class="nav-item">
<a class="nav-link btn btn-outline-secondary my-0 px-3 mx-1" href="/matches">Matches</a>
</li>
<li class="nav-item">
<a class="nav-link btn btn-outline-secondary my-0 px-3 mx-1" href="/profile">Profile</a>
</li>
<li class="nav-item">
<a class="nav-link btn btn-outline-secondary my-0 px-3 mx-1" href="/signout">Sign Out</a>
</li>
</ul>
</div>
</nav>
</header>
<?php } ?>