-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
174 lines (149 loc) · 4.91 KB
/
home.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Home</title>
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon.png">
<link href="/css/style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300&family=Roboto+Condensed&display=swap" rel="stylesheet">
<style>
h2 {
font-family: 'Readex Pro';
text-align: center;
margin: 0;
color: #000;
}
/* a:hover {
color: black;
text-decoration: double;
} */
.btn {
border-radius: 40rem;
}
.form-control {
border: 0.063rem solid #cccccc;
}
.btn-flex {
display: flex;
}
/* .btn-flex: focus {
background-color: grey;
} */
/* .h-100 {
background-color: rgb(14, 17, 45);
} */
.btn-primary {
text-decoration-color: #000;
color: #000 !important;
background-color: #fff;
border-color: #fff;
width: 50%;
/* align-items: center; */
/* padding: 1rem; */
text-align: center;
margin-left: 3rem;
}
.col-xl-12 {
display: flex;
}
/* .container {
width: 80%;
height: 70%;
background-color: green;
padding-top: 5rem;
padding-left: 5rem;
padding-right: 5rem;
} */
#st-box {
float: left;
width: 20rem;
height: 20rem;
background-color: white;
/* border: solid black; */
}
#nd-box {
float: left;
width: 20rem;
height: 20rem;
background-color: white;
/* border: solid black; */
margin-left: 20px;
}
#rd-box {
float: right;
width: 20rem;
height: 20rem;
background-color: white;
}
.column {
float: left;
width: 33.33%;
/* padding: 5rem 5rem 5rem 5rem; */
height: 20rem;
}
.row:after {
content:"";
display: table;
clear: both;
}
.blck {
color: black;
align: center;
}
.h-100 {
background-size: cover;
background-repeat: no-repeat;
}
.brdr {
border-radius: 3rem;
}
/* border: solid black; */
.btn-primary {
background-color: #ffffff;
color: #000000;
}
.btn{
color: #000;
}
/* Black */
</style>
</head>
<body class="h-100" style="background-image: url('/images/use1.jpg');">
<p style="margin-bottom:0;"> <br></p>
<br>
<h2><b>Drug Traceability</b></h2>
<br>
<div class="authincation h-75">
<div class="container-fluid h-100">
<div class="row justify-content-center h-100 align-items-center">
<div class="row">
<div class="column">
<img src= "/images/manufacturer.png" style="width:90%; height:65%; padding-right: 1rem; padding-top: 1rem; padding-left:1rem;" class="brdr">
<br>
<br>
<button type="submit" class="btn btn-block btn-primary blck"> <a href = "/M_login.html" > Manufacturer </button>
</div>
<div class="column">
<img src="/images/distributor.png" style="width:90%; height:65%; padding-right: 1rem; padding-top: 1rem; padding-left:1rem;" class="brdr">
<br>
<br>
<button type="submit" class="btn btn-block btn-primary blck"> <a href ="/S_login.html" > Supplier</button>
</div>
<div class="column">
<img src="/images/consumer.jpg" style="width:90%; height:65%; padding-right: 1rem; padding-top: 1rem; padding-left:1rem;" class="brdr">
<br>
<br>
<button type="submit" class="btn btn-block btn-primary blck"> <a href = "/U_login.html"> Consumer </button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>