-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashbord.html
56 lines (43 loc) · 2.13 KB
/
dashbord.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="dashbord.css">
</head>
<body style="background-image: url('images/cap.jpg');">
<header>
<nav>
<h1>Lanka Pharmarcy</h1>
</nav>
</header>
<h3 class="add-new-drug"> Inventory/add new drug</h3>
<div class="row col col-md-12">
<div class="col col-md-8 form-group">
<input type="text" class="form-control" id="medicine_name" placeholder="Select Drug Name" onblur="notNull(this.value, 'medicine_name_error');">
<div class="col col-md-4 form-group">
<input type="text" class="form-control" id="manufacturer" placeholder="Manufacturer" onblur="notNull(this.value, 'pack_error');">
<code class="text-danger small font-weight-bold float-right" id="pack_error" style="display: none;"></code>
</div>
</div>
<div class="row col col-md-12">
<div class="col col-md-8 form-group">
label
<input type="text" class="form-control" id="medicine_name" placeholder="Select Drug Name" onblur="notNull(this.value, 'medicine_name_error');">
<div class="col col-md-4 form-group">
<input type="text" class="form-control" id="manufacturer" placeholder="Manufacturer" onblur="notNull(this.value, 'pack_error');">
<code class="text-danger small font-weight-bold float-right" id="pack_error" style="display: none;"></code>
</div>
</div>
<div class="row col col-md-12">
<div class="col col-md-8 form-group">
<input type="text" class="form-control" id="medicine_name" placeholder="Select Drug Name" onblur="notNull(this.value, 'medicine_name_error');">
<div class="col col-md-4 form-group">
<input type="text" class="form-control" id="manufacturer" placeholder="Manufacturer" onblur="notNull(this.value, 'pack_error');">
<code class="text-danger small font-weight-bold float-right" id="pack_error" style="display: none;"></code>
</div>
</div>
</body>
</html>