-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
63 lines (56 loc) · 1.62 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
62
63
<?php include 'header.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Oreo</title>
<meta name="description" content="">
<link rel="stylesheet" href="assets/fontawesome/css/all.min.css">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<style>
body
{
margin: 0px;
padding: 0px;
}
.hero-area
{
background-image:url(assets/img/bg.svg);
background-position:right top ;
background-size:;
background-repeat: no-repeat;
height:600px;
background-attachment: fixed;
position:relative;
}
</style>
</head>
<body>
<div class="hero-area">
<div class="container">
<div class="row">
<div class="hero-text">
<h1>Welcome to Oreo <br> Pathology Lab</h1>
<h2>We are ready fo giving to best services <br>
Let us know about your demand !</h2>
</div>
</div>
</div>
<?php
if(isset($_SESSION['User_type']))
{
}
else
{
echo
'<div class="hero_btn">
<a class="btn btn_one" href="patient_registration_form.php">Registation</a>
<a class="btn btn_two" href="login_form.php">Login</a>
</div>';
}
?>
</div>
</body>
</html>