-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
36 lines (34 loc) · 1.23 KB
/
Copy pathindex.php
File metadata and controls
36 lines (34 loc) · 1.23 KB
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
<?php
require_once 'helpers.php';
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bank Project</title>
<link rel="stylesheet" href="/assets/style.css" />
<script type="module" src="assets/script.js" defer></script>
</head>
<body>
<div class="wrapper__home">
<?php loadPartial('header'); ?>
<section class="section__intro">
<div class="section__intro__content">
<h3>Welcome!</h3>
<h1>The best bank to manage your finances</h1>
<p>
This is a PHP project on task 3 (Bank PHP APP) using HTML, CSS, JS, PHP, MySQL. Written by
Daniel Nikolov 24621602.
</p>
<?php if (!isset($_SESSION['employee_name'])): ?>
<a href="/login.php" class="btn btn-secondary">
<span>Log In</span>
</a>
<?php endif; ?>
</div>
</section>
<?php loadPartial('footer'); ?>
</div>
</body>
</html>