mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
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:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user