-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (28 loc) · 945 Bytes
/
Copy pathindex.php
File metadata and controls
28 lines (28 loc) · 945 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 'includes/auth.php';
require_page_login();
?>
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<title>Aegisnet application</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container py-5">
<div class="text-center mb-4">
<img src="assets/logo_en.jpg" alt="company_logo" style="max-height:70px;">
</div>
<h2 class="text-success text-center mb-3">Welcome, <?= htmlspecialchars($_SESSION['user']['username']) ?>!</h2>
<p class="text-center mb-4">
<a href="products.php" class="btn btn-success me-2">Products</a>
<a href="materials.php" class="btn btn-success me-2">Materials</a>
<a href="orders.php" class="btn btn-success">Orders</a>
</p>
<div class="text-center">
<a href="logout.php" class="btn btn-outline-danger">Logout</a>
</div>
</div>
</body>
</html>