-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (43 loc) · 2.44 KB
/
index.php
File metadata and controls
45 lines (43 loc) · 2.44 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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<?php
include 'connect.php';
?>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>fedha</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/Contact-Form-Clean.css">
<link rel="stylesheet" href="assets/css/Footer-Basic.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<nav class="navbar navbar-light navbar-expand-md bg-warning">
<div class="container-fluid"><a class="navbar-brand text-monospace" href="index.php" style="font-weight: bold;">FEDHA YOUTH GROUP</a></div>
</nav>
<hr>
<div class="container">
<h3 class="text-center">FEDHA YOUTH GROUP SYSTEM</h3>
<p>Choose what to do from the catogories below...</p>
<hr>
<div class="row" style="margin-bottom: 5px;padding: 10px;">
<div class="col-md-3 text-center">
<h3 style="margin-bottom: 5px;">Members</h3>
<p style="margin-bottom: 5px;">click to view members</p><a class="btn btn-success btn-sm text-monospace text-center text-light" role="button" style="padding-top: 4px;" href="members.php">Go</a></div>
<div class="col-md-3 text-center">
<h3 style="margin-bottom: 5px;">Contributions</h3>
<p style="margin-bottom: 5px;">click to view contributions</p><a class="btn btn-info btn-sm text-monospace text-center text-light" role="button" style="padding-top: 4px;" href="contributions.php">Go</a></div>
<div class="col-md-3 text-center">
<h3 style="margin-bottom: 5px;">Dividends</h3>
<p style="margin-bottom: 5px;">click to view dividends</p><a class="btn btn-secondary btn-sm text-monospace text-center text-light" role="button" style="padding-top: 4px;" href="dividends.php">Go</a></div>
<div class="col-md-3 text-center">
<h3 style="margin-bottom: 5px;">Loans</h3>
<p style="margin-bottom: 5px;">click to view loans</p><a class="btn btn-primary btn-sm text-monospace text-center text-light" role="button" style="padding-top: 4px;" href="loans.php">Go</a></div>
</div>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>