-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomepage.php
55 lines (49 loc) · 1.75 KB
/
Homepage.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HomePage</title>
<link rel="stylesheet" href="Homepage.css">
<?php include('./db_connect.php'); ?>
<?php
session_start();
if(isset($_SESSION['login_id']))
/*header("location:index.php?page=home");*/
?>
</head>
<body>
<div class="full-page">
<div class="navbar">
<div>
<a href=''>
LOAN APPRAISAL</a>
</div>
<nav>
<ul id='MenuItems'>
<li><a href='#'>Home</a></li>
<li><a href='aboutus.php'>About Us</a></li>
<li><a href='#'>Services</a></li>
<li><a href='contact us\ContactUs\index.php'>Contact Us</a></li>
<li><button class='loginbtn' onclick="document.getElementById('login-form').style.display='block'" style="width:auto;">Login</button></li>
</ul>
</nav>
</div>
<div id='login-form'class='login-page'>
<div class="form-box">
<div class='button-box'>
<div id='btn'></div>
<a href="login.php">
<button type='button' class='toggle-btn'>Log In</button></a>
<a href="register.php">
<button type='button' id="new_borrower" class="toggle-btn"></i> Register</button></a>
</div>
<form id='login' class='input-group-login'>
<a> Don't have an account? Register with us Today!</a>
</form>
</div>
</div>
</div>
</body>
</body>
</html>