-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
46 lines (37 loc) · 1.25 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
<?php
include_once 'header.php';
?>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- navigation section -->
<div class="nav-bar">
<a href="index.php">
<img src="assets/images/logo.png" alt="Fund Raiser logo">
</a>
<div class="nav-links">
<a href="campaigns.php">CAMPAIGNS</a>
<a href="donors.php">DONORS</a>
</div>
<div class="btn-login-signup">
<button type="submit" id="btn-login" onclick="window.location.href='login.php'">LOGIN</button>
<button type="submit" id="btn-signup" onclick="window.location.href='signup.php'">SIGN UP</button>
</div>
</div>
<!-- body part -->
<img src="assets/images/canvas.png" alt="" id="canvas-image">
<div class="banner">
<img src="assets/images/banner.png" alt=""><br><br>
<span id="banner-quote">
"No one has ever become <br> poor by giving."
</span>
</div>
<div class="get-started">
<span id="create-campaign">
CREATE YOUR OWN CAMPAIGN
</span>
<button type="submit" onclick="window.location.href='signup.php'">GET STARTED</button>
</div>
<?php
include_once 'footer.php';
?>