-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
29 lines (23 loc) · 1.04 KB
/
index.php
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
<link rel="stylesheet" href="css/style.css">
<?php include("lib/layouts/header.php"); ?>
<?php include("lib/layouts/nav.php"); ?>
<div class="home-content">
<div class="container">
<div class="title">All Data</div>
<hr>
<div class="body">
<a href="add_products.php"><button class="btn btn-success">+ Add New</button></a>
<div class="left-search">
<form action="<?php $_SERVER['PHP_SELF']?>" method="POST" name="search_form" onsubmit="return validate_search();">
<div class="search-form">
<input type="text" class="form-input" id="searchValue" placeholder="Search">
<input type="submit" value="Search" class="btn btn-primary search-btn" name="searchBtn">
<p id="inputerror"></p>
</div>
</form>
</div>
</div>
</div>
</div>
<?php include("lib/layouts/footer.php")?>
<script src="js/script.js"></script>