-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
61 lines (55 loc) · 1.82 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link rel="stylesheet" type="text/css" href="./assets/css/app.css">
<title>Credit Management</title>
</head>
<body>
<div class="container main_container">
<h4 class="text-center">CREDIT MANAGEMENT SYSTEM</h4>
<div class="row main_row">
<div class="col-lg-4 col-md-4 col-12">
<div class="credit_options_div">
<div class="credit_options">
<a href="users.php">
<div class="image_div">
<img src="./assets/images/users.svg">
</div>
<h6>View Users</h6>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="credit_options_div">
<div class="credit_options">
<a href="transaction.php">
<div class="image_div">
<img src="./assets/images/money-transfer.svg">
</div>
<h6>Transfer Credits</h6>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="credit_options_div">
<div class="credit_options">
<a href="history.php">
<div class="image_div">
<img src="./assets/images/transaction-history.svg">
</div>
<h6>View History</h6>
</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha2/js/bootstrap.bundle.min.js"></script>
</body>
</html>