Tons of UI and code cleanups, renamed many sql tables and fields, started adding created_at and updated_at fields

This commit is contained in:
root
2019-05-17 01:09:16 -04:00
parent 4b3c2c8c2a
commit fa08853640
72 changed files with 1625 additions and 3305 deletions

View File

@@ -11,12 +11,12 @@
<div class="modal-body bg-white">
<div class="form-group">
<label>Name</label>
<input type="text" class="form-control" name="name" required autofocus>
<input type="text" class="form-control" name="name" placeholder="Category name" required autofocus>
</div>
<div class="form-group">
<label>Type</label>
<select class="form-control" name="type" required>
<option value="">Select a type...</option>
<option value="">- Type -</option>
<?php foreach($category_types_array as $category_type) { ?>
<option><?php echo $category_type; ?></option>
<?php } ?>
@@ -24,7 +24,7 @@
</div>
<div class="form-group">
<label>Color</label>
<input type="color" class="form-control" name="color">
<input type="color" class="form-control col-md-2" name="color">
</div>
</div>
<div class="modal-footer bg-white">