Lots of UI cleanups and update, gave a dark look for modals, bunch of icon changes etc

This commit is contained in:
root
2019-05-13 14:53:17 -04:00
parent 5c55358841
commit 4389c92c0e
79 changed files with 771 additions and 676 deletions

View File

@@ -1,15 +1,15 @@
<div class="modal" id="editProductModal<?php echo $product_id; ?>" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title"><i class="fa fa-box"></i> Edit Product</h5>
<button type="button" class="close" data-dismiss="modal">
<h5 class="modal-title text-white"><i class="fa fa-fw fa-box mr-2"></i>Edit Product</h5>
<button type="button" class="close text-white" data-dismiss="modal">
<span aria-hidden="true">&times;</span>
</button>
</div>
<form action="post.php" method="post" autocomplete="off">
<input type="hidden" name="product_id" value="<?php echo $product_id; ?>">
<div class="modal-body">
<div class="modal-body bg-white">
<div class="form-group">
<label>Name</label>
<input type="text" class="form-control" name="name" value="<?php echo $product_name; ?>" required>
@@ -23,7 +23,7 @@
<input type="text" class="form-control" name="cost" value="<?php echo $product_cost; ?>">
</div>
</div>
<div class="modal-footer">
<div class="modal-footer bg-white">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
<button type="submit" name="edit_product" class="btn btn-primary">Save</button>
</div>