-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpharmlog.html
139 lines (106 loc) · 4.61 KB
/
pharmlog.html
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
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type ="text/javascript" defer src="https://code.getmdl.io/1.2.1/material.min.js"> </script>
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js"></script>
<link rel="stylesheet" href="material.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.indigo-pink.min.css">
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.indigo-pink.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body style="z-index:1">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<div class="android-header mdl-layout__header mdl-layout__header--waterfall">
<div class="mdl-layout__header-row" style="background-color:black;height:80px">
<h3 style="color:white">Pharmacy</h3>
<!-- Add spacer, to align navigation to the right in desktop -->
<div class="android-header-spacer mdl-layout-spacer"></div>
<div class="android-search-box mdl-textfield mdl-js-textfield mdl-textfield--expandable mdl-textfield--floating-label mdl-textfield--align-right mdl-textfield--full-width">
<label class="mdl-button mdl-js-button mdl-button--icon" for="search-field">
<i class="material-icons">search</i>
</label>
<div class="mdl-textfield__expandable-holder">
<input class="mdl-textfield__input" type="text" id="search-field" placeholder=" Medicine search" style="font-style:italic">
</div>
</div>
<!-- Navigation -->
<div class="android-navigation-container">
<nav class="android-navigation mdl-navigation">
<a class="mdl-navigation__link mdl-typography--" href="logout.php" style="cursor:pointer">Logout</a>
<a class="mdl-navigation__link mdl-typography--" href="jk">Home</a>
</nav>
</div>
</div>
</div>
<div class="android-drawer mdl-layout__drawer" style="display:">
<div class="mdl-layout-title" ">
<img class="pharmacy" src="Pharmacy-Management1.png" style="margin-top:20px">
</div>
<nav class="mdl-navigation" style="font-style:italic;">
<a class="mdl-navigation__link" href="pharmlog.html"><b>Home</b></a>
<a class="mdl-navigation__link" href="update.php"><b>Update Medicines</b></a>
<a class="mdl-navigation__link" href="search1.php"><b>Search Appt</b></a>
</nav>
</div>
<main class="mdl-layout__content" >
<div style="z-index:-1;position:relative">
<div style="position:absolute ;z-index:10; ">
<span style="position:absolute; margin:180px 850px" class="demo-card-square mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-card--expand">
</div>
<div class="mdl-card__supporting-text">
Click the link below to update medicine bank.
</div>
<div style="" align="center" class="mdl-card__actions mdl-card--border">
<center><a href="update.php" class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect">
Update Medicines
</a></center>
</div>
</span>
<span style="position:absolute; margin:20px 390px" class="demo-card-square2 mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-card--expand">
<h2 class="mdl-card__title-text">Search</h2>
</div>
<div style="" class="mdl-card__supporting-text">
Give Medicines Prescribed By Doctor
</div>
<div align="center" style="background-color:" class="mdl-card__actions mdl-card--border">
<a href="search1.php" class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect">
Medicines For Patient
</a>
</div>
</span>
<div style="position:absolute;opacity:0.75; ">
<img src="pharm.jpg" style="height:610px; width :1360px;">
</div>
</div>
</div>
<style>
.demo-card-square.mdl-card,.demo-card-square2.mdl-card {
width: 380px;
height: 230px;
border-radius: 80px;
text-shadow: 20px
}
.demo-card-square > .mdl-card__title {
color: #fff;
background:
url('med.jpg') no-repeat #46B6AC ; size: 10px;
background-size: 100%;
opacity: 0.9;
}
.demo-card-square2 > .mdl-card__title {
color: #fff;
background:
url('pres.jpg') no-repeat #46B6AC ;
background-size: 100%;
opacity: 0.9;
}
</style>
</main>
</div>
</html>