-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddsize.php
More file actions
executable file
·28 lines (24 loc) · 1.11 KB
/
addsize.php
File metadata and controls
executable file
·28 lines (24 loc) · 1.11 KB
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
<?php
require_once dirname(__FILE__).'/include/header.php';
require_once dirname(__FILE__).'/include/api.php';
require_once dirname(__FILE__).'/include/navbar.php';
?>
<div class="socialcodia">
<div class="row">
<div class="col l10 offset-l1 s12 m12" style="padding: 30px 0px 30px 10px;">
<div class="card z-depth-0">
<div class="card-content">
<div class="input-field">
<input type="text" name="sizeName" id="sizeName" placeholder="50Ml or 15GM">
<label for="sizeName blue-text">Enter Size Name</label>
</div>
<div class="input-field center">
<button type="submit" class="btn blue" onclick="addSize()" name="btnAddSize" id="btnAddSize">Add Size</button>
</div>
</div>
</div>
</div>
</div>
</div>
<?php require_once dirname(__FILE__).'/include/sidenav.php'; ?>
<?php require_once dirname(__FILE__).'/include/footer.php'; ?>