-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
130 lines (119 loc) · 5 KB
/
Copy pathindex.php
File metadata and controls
130 lines (119 loc) · 5 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
session_start();
include("db_con/dbCon.php");
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<!--<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous"> -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media.css">
<title>Lawyer Management System</title>
</head>
<body>
<header class="customnav bg-success">
<div class="container">
<div class="row">
<div class="col-md-12">
<nav class="navbar navbar-expand-lg ">
<a class="navbar-brand cus-a" href="index.php">Lawyer Management System</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto ">
<li class="active">
<a class="nav-link cus-a" href="index.php">Home <span class="sr-only">(current)</span></a>
</li>
<li class="">
<a class="nav-link cus-a" href="lawyers.php">Lawyers</a><!--lawyers.html page-->
</li>
<?php if(isset($_SESSION['login']) && $_SESSION['login'] == TRUE){ ?>
<li class="">
<a class="nav-link cus-a" href="user_dashboard.php">Dashboard</a>
</li>
<li class="">
<a class="nav-link cus-a" href="logout.php">Logout</a>
</li>
<?php }else{ ?>
<li class="">
<a class="nav-link cus-a" href="login.php">Login</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle cus-a" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Register
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="lawyer_register.php">Register as a lawyer</a><!--redirect lawyer register page-->
<a class="dropdown-item" href="user_register.php">Register as a user</a><!--redirect user register page-->
</div>
</li>
<?php }?>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<section>
<div class="banner">
<div class="container">
<div class="row">
<div class="col-md">
<div class="banner_content">
<h1>Discover Your Ideal Lawyer Here!</h1>
<p>Your Legal Journey Starts Now</p>
<br>
<a href="lawyers.php" class="btn-lg cusbutton">Find Lawyers</a>
</div>
</div>
</div>
</div>
</div>
</section>
<br>
<br>
<section class="aboutus">
<div class="container">
<div class="row">
<div class="col-md-6 ml-auto">
<h1>About Us</h1>
<p>Welcome to our Lawyer Management System, where we put you in control. Our platform is all about making the legal process as effortless as possible. We've created a space where you, the user, can browse, choose, and book appointments with lawyers who best suit your unique needs. It's your legal journey, your way, and we're here to make it seamless. Trust us to connect you with the right legal expertise when you need it most.</p>
</div>
<div class="col-md-6">
<div class="contact-us-bar">
<h1 class="contact-header">Get in Touch</h1>
<div class="contact-details">
<p><i class="fas fa-map-marker-alt"></i> Address: D-18, Block-4</p>
<p><i class="fas fa-phone"></i> Phone: +9234-332-08987</p>
<p><i class="fas fa-envelope"></i> Email: lawyers@contact.com</p>
<p><i class="fas fa-headset"></i> Customer Support: 021-58585-3</p>
<p><i class="far fa-clock"></i> Office Hours: 9am-4pm</p>
</div>
</div>
</div>
</div>
</div>
</section>
<br>
<br>
<footer class="bg-success">
<div class="container">
<div class="row">
<div class="col">
<h5>All rights reserved. 2023</h5>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
</body>
</html>