Files
rockfish/wwwroot/js/templates/app.customerSiteEdit.handlebars
2020-06-09 22:40:57 +00:00

102 lines
4.4 KiB
Handlebars

<div>
<form id="frm" method="post" action="index.html">
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="name">Name</label>
<input class="form-control" type="text" id="name" name="name" value="">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="country">Country</label>
<input class="form-control" type="text" id="country" name="country" value="">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="stateProvince">State / Province</label>
<input class="form-control" type="text" id="stateProvince" name="stateProvince" value="">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="dbType">Database type</label>
<input class="form-control" type="text" id="dbType" name="dbType" value="">
</div>
</div>
<div class="col-sm-6">
<div class="form-check">
<label class="form-check-label" for="legacyV7">
<input class="form-check-input" type="checkbox" name="legacyV7" id="legacyV7">
Legacy / AyaNova 7</label>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="dbId">Raven database Id</label>
<input class="form-control" type="text" id="dbId" name="dbId" value="">
</div>
</div>
<div class="col-sm-6">
<div class="form-check">
<label class="form-check-label" for="networked">
<input class="form-check-input" type="checkbox" name="networked" id="networked">
Networked</label>
</div>
</div>
{{!-- <div class="col-sm-6">
<div class="form-group">
<label for="serverOS">Server OS</label>
<input class="form-control" type="text" id="serverOS" name="serverOS" value="">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="serverBits">Server bits</label>
<input class="form-control" type="text" id="serverBits" name="serverBits" value="">
</div>
</div> --}}
<div class="col-sm-6">
<div class="form-check">
<label class="form-check-label" for="hosted">
<input class="form-check-input" type="checkbox" name="hosted" id="hosted">
Hosted</label>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="hostName">Host name</label>
<input class="form-control" type="text" id="hostName" name="hostName" value="">
</div>
</div>
{{!-- <div class="col-sm-6">
<div class="form-group">
<label for="hostingStartDate">Hosting start</label>
<input class="form-control" type="date" id="hostingStartDate" name="hostingStartDate" value="">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="hostingEndDate">Hosting end</label>
<input class="form-control" type="date" id="hostingEndDate" name="hostingEndDate" value="">
</div>
</div> --}}
<div class="col-sm-12">
<div class="form-group">
<label for="notes">Notes</label>
<textarea class="form-control" id="notes" name="notes" rows="10"/>
</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>