-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.php
30 lines (27 loc) · 933 Bytes
/
menu.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
<header>
<nav>
<div class="topnav">
<a class="active" href="#home">Home</a>
<a href="#news">News</a>
<a href="#contact">Contact</a>
<div class="topnav-right">
<?php
if(!isset($_SESSION['logUser'])){
echo '<div class="nav-login">
<form action="login.php" method="post" autocomplete="off">
<input type="text" name="loguser" max="20" placeholder="Nom" required>
<input type="password" name="passlog" placeholder="Matricule" required>
<button name="submit"type="submit">Login</button>
</form>
<a href="registration.php">Sign Up</a>
</div>';
}else{
echo '<form action="logout.php" method="post" >
<button name="Submit"type="submit">Logout</button>
</form>';
}
?>
</div>
</div>
</nav>
</header>