56 lines
2.1 KiB
Handlebars
56 lines
2.1 KiB
Handlebars
<div>
|
|
<form id="frm" method="post" action="index.html">
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="regTo">Registered to</label>
|
|
<input class="form-control" type="text" id="regTo" name="regTo" value="" readonly>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="customerName">Rockfish customer name</label>
|
|
<input class="form-control" type="text" id="customerName" name="customerName" value="" readonly>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="dtcreated">Created</label>
|
|
<input class="form-control" type="date" id="dtcreated" name="dtcreated" value="" readonly>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input class="form-control" type="text" id="email" name="email" value="" readonly>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="code">Fetch code</label>
|
|
<input class="form-control" type="text" id="code" name="code" value="" readonly>
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
<label class="form-check-label text-success font-weight-bold" for="fetched">
|
|
<input class="form-check-input" type="checkbox" name="fetched" id="fetched"> License fetched</label>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="dtFetched">Fetched on</label>
|
|
<input class="form-control" type="date" id="dtfetched" name="dtfetched" value="" readonly>
|
|
</div>
|
|
|
|
{{!-- <div class="form-group">
|
|
<label for="fetchFrom">Fetched from</label>
|
|
<input class="form-control" type="text" id="fetchFrom" name="fetchFrom" value="" readonly>
|
|
</div> --}}
|
|
|
|
<div class="form-group">
|
|
<label for="key">Key</label>
|
|
<textarea class="form-control form-control-lg" id="key" name="key" rows="10" readonly/>
|
|
</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> |