-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
executable file
·46 lines (42 loc) · 2.79 KB
/
settings.php
File metadata and controls
executable file
·46 lines (42 loc) · 2.79 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?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 l12 s12 m12" >
<div class="row">
<div class="col s12 l3 m4">
<div class="collection">
<a href="settings" class="collection-item active blue">Home</a>
<a href="changepassword" class="collection-item ">Change Password</a>
<a href="#!" class="collection-item">Comming Soon</a>
<a href="#!" class="collection-item">Comming Soon</a>
<a href="#!" class="collection-item">Comming Soon</a>
<a href="#!" class="collection-item">Comming Soon</a>
</div>
</div>
<div class="col s12 l9 m8" >
<div class="card z-depth-0" style="margin:20px; padding: 0px;">
<div class="card-content" style="padding: 0px; margin: 0px;">
<p class="center card-title white-text blue" style="font-weight:bold; padding: 10px">Update Product Notice Count</p>
<div style="padding: 30px 30px 0px 30px;">
<span class="">Here you can pass the notice product quantity, when the quantity is less or equal to entered value. The product will show in notice tab. The default notice count is 6. You can change it any time.</span>
<div class="input-field" style="margin-top: 10px">
<input type="number" style="text-transform:uppercase" name="productNoticeCount" id="productNoticeCount" placeholder="Default Notice Quantity 6">
<label for="productNoticeCount">Enter Product Notice Quantity</label>
</div>
</div>
<div class="card-action blue" style="padding: 0px; margin: 0px; height:55px;">
<input class="btn blue" style="width:100%; height: 100%" value="Update Product Notice Count" type="submit" name="btnUpdateProductNoticeCount" onclick="alertUpdateProductNoticeCount()" id="btnUpdateProductNoticeCount">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php require_once dirname(__FILE__).'/include/sidenav.php'; ?>
<?php require_once dirname(__FILE__).'/include/footer.php'; ?>