-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEdit.html
238 lines (165 loc) · 7.85 KB
/
Edit.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/favicon.png">
<title>List</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.css" rel="stylesheet">
<link href="css/elegant-icons-style.css" rel="stylesheet" />
<link href="css/font-awesome.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet">
<link href="css/style-responsive.css" rel="stylesheet" />
</head>
<body>
<section id="container" class="">
<!--header start-->
<header class="header dark-bg">
<div class="toggle-nav">
<div class="icon-reorder tooltips" data-original-title="Toggle Navigation" data-placement="bottom"><i class="icon_menu"></i></div>
</div>
<a href="index.html" class="logo">Gem <span class="lite">Chem</span></a>
</header>
<!--header end-->
<!--sidebar start-->
<aside>
<div id="sidebar" class="nav-collapse ">
<!--sidebar start-->
<aside>
<div id="sidebar" class="nav-collapse ">
<!-- sidebar menu start-->
<ul class="sidebar-menu">
<li class="active">
<a class="" href="index.html">
<i class="icon_house_alt"></i>
<span>Dashboard</span>
</a>
</li>
<li class="sub-menu">
<a href="javascript:;" class="">
<i class="icon_document_alt"></i>
<span>Notifications</span>
<span class="menu-arrow arrow_carrot-right"></span>
</a>
<ul class="sub">
<li><a class="" href="Reminders.html">Reminders</a></li>
</ul>
</li>
<li class="sub-menu">
<a href="javascript:;" class="">
<i class="icon_desktop"></i>
<span>Inventory</span>
<span class="menu-arrow arrow_carrot-right"></span>
</a>
<ul class="sub">
<li><a class="" href="List.html">List</a></li>
<li><a class="" href="Edit.html">Edit</a></li>
</ul>
</li>
<li class="sub-menu">
<a href="javascript:;" class="">
<i class="icon_table"></i>
<span>Virus Section</span>
<span class="menu-arrow arrow_carrot-right"></span>
</a>
<ul class="sub">
<li><a class="" href="Virus.html">Manage Viruses</a></li>
</ul>
</li>
<li class="sub-menu">
<a href="javascript:;" class="">
<i class="icon_documents_alt"></i>
<span>Pager</span>
<span class="menu-arrow arrow_carrot-right"></span>
</a>
<ul class="sub">
<li><a class="" href="404.html">Employees</a></li>
</ul>
</li>
</ul>
<!-- sidebar menu end-->
</div>
</aside>
<!--sidebar end-->
</div>
</aside>
<!--main content start-->
<section id="main-content">
<section class="wrapper">
<div class="row">
<div class="col-lg-12">
<h3 class="page-header"><i class="fa fa-table"></i>List</h3>
<ol class="breadcrumb">
<li><i class="fa fa-home"></i><a href="index.html">Home</a></li>
<li><i class="fa fa-table"></i>List</li>
<li><i class="fa fa-th-list"></i>Inventory</li>
</ol>
</div>
</div>
<!-- page start-->
<div class="row">
<div class="col-sm-6">
<form action="insert.php" method="post">
<input type="text" name="stock_num" required placeholder="Stock num"><br><br>
<input type="text" name="stock_name" placeholder=" Name"><br><br>
<input type="number" name="quantity" placeholder="Quantity" min="1" max="1000"><br><br>
<input type="submit" name="insert" value="Add Data To Database">
<style>
.textbox {
background: white;
border: 1px solid #ffa853;
border-radius: 6px;
box-shadow: 0 0 5px 3px #ffa853;
color: #666;
outline: none;
height:23px;
width: 275px;
}
</style>
</form>
====================================================================================================
delete a record, please just enter the record number in the textbox below and click on the button
======================================================================================================
<form action="delete.php" method="post">
<input type="text" name="stock_num" required placeholder="Stock num"><br><br>
<input type = "submit" name="delete" value="Delete stock number" >
</form>
====================================================================================================
search a record, please just enter the record number in the textbox below and click on the button
======================================================================================================
<form action="search.php" method="post">
<input type="text" name="stock_num" required placeholder="Stock num"><br><br>
<input type = "submit" name="search" value="search stock number" >
</form>
====================================================================================================
update a record, please just enter the record number in the textbox below and change the quantity, then click on the button
======================================================================================================
<form action="rename.php" method="post">
<input type="text" name="stock_num" required placeholder="Stock num"><br><br>
<input type = "submit" name="search" value="change quantity" >
<input type="number" name="quantity" placeholder="Quantity" min="1" max="1000"><br><br>
</form>
</div>
</div>
</section>
<!-- page end-->
</section>
</section>
<!--main content end-->
<div class="text-right">
<div class="credits">
</div>
</div>
</section>
<!-- container section end -->
<!-- javascripts -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- nicescroll -->
<script src="js/jquery.scrollTo.min.js"></script>
<script src="js/jquery.nicescroll.js" type="text/javascript"></script>
<!--custome script for all page-->
<script src="js/scripts.js"></script>
</body>
</html>