49 lines
1.5 KiB
Handlebars
49 lines
1.5 KiB
Handlebars
<div>
|
|
<form id="frm" method="post" action="index.html">
|
|
<div class="mb-4">
|
|
<span class="display-4" id="notificationid"></span>
|
|
<span class="text-muted align-top" id="dtcreated"></span>
|
|
</div>
|
|
|
|
<div class="mb-4">
|
|
<span class="display-4" id="processed"></span>
|
|
<span class="text-muted align-top" id="dtprocessed"></span>
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
|
<div class="form-group">
|
|
<label for="vendor">Vendor</label>
|
|
<input
|
|
class="form-control"
|
|
type="text"
|
|
id="vendor"
|
|
name="vendor"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-12">
|
|
<div class="form-group">
|
|
<label for="data">Data</label>
|
|
<textarea
|
|
class="form-control"
|
|
id="data"
|
|
name="data"
|
|
rows="30"
|
|
></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{! <div class="app-frm-buttons mt-5">
|
|
<button id="btn-save" class="btn btn-success">Save</button>
|
|
<button id="btn-delete" class="btn btn-outline-dark">Delete</button>
|
|
</div> }}
|
|
|
|
</form>
|
|
|
|
</div> |