Added Asset Photo and Asset Physical Location to the UI

This commit is contained in:
johnnyq
2024-06-13 13:54:21 -04:00
parent 3288cb6dc2
commit 16c2fbf6d1
8 changed files with 110 additions and 15 deletions

View File

@@ -8,7 +8,7 @@
</button>
</div>
<form action="post.php" method="post" autocomplete="off">
<form action="post.php" method="post" enctype="multipart/form-data" autocomplete="off">
<input type="hidden" name="client_id" value="<?php echo $client_id; ?>">
@@ -218,6 +218,16 @@
<div class="tab-pane fade" id="pills-assignment">
<div class="form-group">
<label>Physical Location</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-map-marker-alt"></i></span>
</div>
<input type="text" class="form-control" name="physical_location" placeholder="Physical location eg. Floor 2, Closet B">
</div>
</div>
<div class="form-group">
<label>Location</label>
<div class="input-group">
@@ -363,6 +373,11 @@
<div class="tab-pane fade" id="pills-notes">
<div class="form-group">
<label>Upload Photo</label>
<input type="file" class="form-control-file" name="file">
</div>
<div class="form-group">
<textarea class="form-control" rows="8" placeholder="Enter some notes" name="notes"></textarea>
</div>