-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (25 loc) · 837 Bytes
/
Copy pathindex.php
File metadata and controls
29 lines (25 loc) · 837 Bytes
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
<?php
require_once 'debug.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RBAC</title>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="javascript" href="assets/js/scripts.js">
</head>
<body>
<div class="container">
<h1 class="title">Welcome to the RBAC System, <?php echo_data_usernameonly()?> </h1>
<nav class="navigation">
<ul class="nav-list">
<li><a class="btn" href="login.php">Log In</a></li>
<li><a class="btn btn-alt" href="signup.php">Sign Up</a></li>
<li><a class="btn btn-primary" href="includes/controllers/logoutcont.php">Logout</a></li>
</ul>
</nav>
</div>
</body>
</html>