-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
61 lines (55 loc) · 1.98 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
<?php require "partials/header.php";
require "partials/navbar.php";
?>
<!-- layout -->
<section id="hero">
<div class="container">
<div class=" jumbotron hero-div jumbotron-fluid" style="background-color: #4158D0;
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
">
<div class="container text-white">
<h1 class="display-4 ml-4 font-weight-bold font-italic ">Money. Balance both.</h1>
<p class="lead ml-4">We are here to help.</p>
<div class="d-flex">
<!-- signup form to get the customer -->
<a href="signup.php" class=" btn btn-light ml-4 mt-4">
Signup
</a>
</div>
</div>
</div>
</div>
</section>
<div class=" container p-3">
<div class="row ">
<div class="col-sm-6 col-lg-6">
<div class="card power p-4">
<div class="card-body text-white ">
<h3 class=" card-title mb-4">Powering your ideas.
</h3>
<p class=" card-text ">The simple way to send or receive money with anyone
</p>
<a href="transfer.php" class=" btn btn-light ">Get Started </a>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-6">
<div class="card bg-warning p-4">
<div class="card-body text-white ">
<h3 class=" card-title mb-4">Take control of your money .
</h3>
<p class=" card-text ">The simple way to send or receive money with anyone
</p>
<a href="dashboard.php" class=" btn btn-light "> Manage </a>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- footer -->
<?php
include 'partials/footer.php';
?>
<!-- footer end -->