This commit is contained in:
9
wwwroot/js/templates/app.authenticate.handlebars
Normal file
9
wwwroot/js/templates/app.authenticate.handlebars
Normal file
@@ -0,0 +1,9 @@
|
||||
<div>
|
||||
<img src="android-chrome-192x192.png" alt="Rockfish logo" >
|
||||
<h2>Login</h2>
|
||||
<form method="post" action="index.html">
|
||||
<p><input type="text" id="login" value="" placeholder="Username" autocapitalize="none"></p>
|
||||
<p><input type="password" id="password" value="" placeholder="Password"></p>
|
||||
<p class="submit"><input type="submit" id="btnSubmit" value="Login"></p>
|
||||
</form>
|
||||
</div>
|
||||
54
wwwroot/js/templates/app.customerEdit.handlebars
Normal file
54
wwwroot/js/templates/app.customerEdit.handlebars
Normal file
@@ -0,0 +1,54 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<label for="name">Name</label>
|
||||
<input class="form-control" type="text" id="name" name="name" value="">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="adminEmail">Admin / license / support emails</label>
|
||||
<input class="form-control" type="text" id="adminEmail" name="adminEmail" placeholder="License related, comma separated" value="">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="supportEmail">Support only emails</label>
|
||||
<input class="form-control" type="text" id="supportEmail" name="supportEmail" placeholder="License related, comma separated" value="">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="affiliateNumber">Affiliate number</label>
|
||||
<input class="form-control" type="text" id="affiliateNumber" name="affiliateNumber" value="">
|
||||
</div>
|
||||
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="doNotContact">
|
||||
<input class="form-check-input" type="checkbox" name="doNotContact" id="doNotContact">
|
||||
Do not contact
|
||||
</label>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="active">
|
||||
<input class="form-check-input" type="checkbox" name="active" id="active">
|
||||
Active</label>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<label for="notes">Notes</label>
|
||||
<textarea class="form-control form-control-lg" id="notes" name="notes" rows="10"/>
|
||||
</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>
|
||||
88
wwwroot/js/templates/app.customerSiteEdit.handlebars
Normal file
88
wwwroot/js/templates/app.customerSiteEdit.handlebars
Normal file
@@ -0,0 +1,88 @@
|
||||
<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-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="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-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>
|
||||
3
wwwroot/js/templates/app.customerSites.handlebars
Normal file
3
wwwroot/js/templates/app.customerSites.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
4
wwwroot/js/templates/app.customers.handlebars
Normal file
4
wwwroot/js/templates/app.customers.handlebars
Normal file
@@ -0,0 +1,4 @@
|
||||
<div>
|
||||
<div id="rf-list-count"/>
|
||||
<div id="rf-list" class="rf-list"/>
|
||||
</div>
|
||||
3
wwwroot/js/templates/app.fourohfour.handlebars
Normal file
3
wwwroot/js/templates/app.fourohfour.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<h2>404 NOT FOUND 404</h2>
|
||||
</div>
|
||||
3
wwwroot/js/templates/app.inbox.handlebars
Normal file
3
wwwroot/js/templates/app.inbox.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<ul id="rf-list-div" />
|
||||
</div>
|
||||
183
wwwroot/js/templates/app.license.handlebars
Normal file
183
wwwroot/js/templates/app.license.handlebars
Normal file
@@ -0,0 +1,183 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
<div class="row">
|
||||
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="keyWillLockout">
|
||||
<input class="form-check-input" type="checkbox" name="keyWillLockout" id="keyWillLockout"> Expiring test key</label>
|
||||
</div>
|
||||
<input class="form-control" type="date" id="lockoutDate" name="lockoutDate" value="">
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="isLite">
|
||||
<input class="form-check-input" type="checkbox" name="isLite" id="isLite"> AyaNova LITE</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="licenseType">License type</label>
|
||||
<select class="form-control" name="licenseType">
|
||||
<option value="new">New</option>
|
||||
<option value="addon">Renewal / Add-on</option>
|
||||
<option value="licensedTrial">Licensed trial</option>
|
||||
<option value="webRequestedTrial">Web requested trial</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="registeredTo">Registered to</label>
|
||||
<input class="form-control" type="text" id="registeredTo" name="registeredTo" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="customerId">Customer</label>
|
||||
<select class="form-control" id="customerId" name="customerId" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="emailAddress">Email address</label>
|
||||
<input class="form-control" type="text" id="emailAddress" name="emailAddress" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="users">Users</label>
|
||||
<select class="form-control" name="users">
|
||||
<option value="1">1</option>
|
||||
<option value="5">5</option>
|
||||
<option value="10">10</option>
|
||||
<option value="15">15</option>
|
||||
<option value="20">20</option>
|
||||
<option value="50">50</option>
|
||||
<option value="999">999</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
|
||||
<div class="form-group">
|
||||
<label for="supportExpiresDate">Support expires</label>
|
||||
<input class="form-control" type="date" id="supportExpiresDate" name="supportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="wbi">
|
||||
<input class="form-check-input" type="checkbox" name="wbi" id="wbi"> WBI
|
||||
</label>
|
||||
<input class="form-control" type="date" id="wbiSupportExpiresDate" name="wbiSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="mbi">
|
||||
<input class="form-check-input" type="checkbox" name="mbi" id="mbi"> MBI
|
||||
</label>
|
||||
<input class="form-control" type="date" id="mbiSupportExpiresDate" name="mbiSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="ri">
|
||||
<input class="form-check-input" type="checkbox" name="ri" id="ri"> RI
|
||||
</label>
|
||||
<input class="form-control" type="date" id="riSupportExpiresDate" name="riSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="qbi">
|
||||
<input class="form-check-input" type="checkbox" name="qbi" id="qbi"> QBI
|
||||
</label>
|
||||
<input class="form-control" type="date" id="qbiSupportExpiresDate" name="qbiSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="qboi">
|
||||
<input class="form-check-input" type="checkbox" name="qboi" id="qboi"> QBOI
|
||||
</label>
|
||||
<input class="form-control" type="date" id="qboiSupportExpiresDate" name="qboiSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="pti">
|
||||
<input class="form-check-input" type="checkbox" name="pti" id="pti"> PTI
|
||||
</label>
|
||||
<input class="form-control" type="date" id="ptiSupportExpiresDate" name="ptiSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="quickNotification">
|
||||
<input class="form-check-input" type="checkbox" name="quickNotification" id="quickNotification"> Quick notification</label>
|
||||
<input class="form-control" type="date" id="quickNotificationSupportExpiresDate" name="quickNotificationSupportExpiresDate"
|
||||
value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="exportToXls">
|
||||
<input class="form-check-input" type="checkbox" name="exportToXls" id="exportToXls"> Export to XLS</label>
|
||||
<input class="form-control" type="date" id="exportToXlsSupportExpiresDate" name="exportToXlsSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="outlookSchedule">
|
||||
<input class="form-check-input" type="checkbox" name="outlookSchedule" id="outlookSchedule"> Outlook Schedule</label>
|
||||
<input class="form-control" type="date" id="outlookScheduleSupportExpiresDate" name="outlookScheduleSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="oli">
|
||||
<input class="form-check-input" type="checkbox" name="oli" id="oli"> OLI
|
||||
</label>
|
||||
<input class="form-control" type="date" id="oliSupportExpiresDate" name="oliSupportExpiresDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="importExportCSVDuplicate">
|
||||
<input class="form-check-input" type="checkbox" name="importExportCSVDuplicate" id="importExportCSVDuplicate"> Import / export CSV duplicate</label>
|
||||
<input class="form-control" type="date" id="importExportCSVDuplicateSupportExpiresDate" name="importExportCSVDuplicateSupportExpiresDate"
|
||||
value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="key">Key</label>
|
||||
<textarea class="form-control" id="key" name="key" rows="10" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="app-frm-buttons">
|
||||
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
26
wwwroot/js/templates/app.licenseRequestEdit.handlebars
Normal file
26
wwwroot/js/templates/app.licenseRequestEdit.handlebars
Normal file
@@ -0,0 +1,26 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="request">Request</label>
|
||||
<textarea class="form-control" readonly id="request" name="request" rows="10"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="greeting">Greeting message</label>
|
||||
<textarea class="form-control" id="greeting" name="greeting" rows="10"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="keycode">Keycode message</label>
|
||||
<textarea class="form-control" readonly id="keycode" name="keycode" rows="10"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
75
wwwroot/js/templates/app.licenseTemplates.handlebars
Normal file
75
wwwroot/js/templates/app.licenseTemplates.handlebars
Normal file
@@ -0,0 +1,75 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-12">
|
||||
<h2>FULL KEY</h2>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="fullNew">New</label>
|
||||
<textarea class="form-control" id="fullNew" name="fullNew" rows="10" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="fullAddOn">Add-On</label>
|
||||
<textarea class="form-control" id="fullAddOn" name="fullAddOn" rows="10" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="fullTrial">Licensed Trial</label>
|
||||
<textarea class="form-control" id="fullTrial" name="fullTrial" rows="10" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<h2>Full trial greeting</h2>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="fullTrialGreeting">Greeting</label>
|
||||
<textarea class="form-control" id="fullTrialGreeting" name="fullTrialGreeting" rows="10" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
|
||||
<h2>LITE KEY</h2>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="liteNew">Lite New</label>
|
||||
<textarea class="form-control" id="liteNew" name="liteNew" rows="10" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="liteAddOn">Lite Add-On</label>
|
||||
<textarea class="form-control" id="liteAddOn" name="liteAddOn" rows="10" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="liteTrial">Lite Licensed Trial</label>
|
||||
<textarea class="form-control" id="liteTrial" name="liteTrial" rows="10">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<h2>Lite trial greeting</h2>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="liteTrialGreeting">Lite Greeting</label>
|
||||
<textarea class="form-control" id="liteTrialGreeting" name="liteTrialGreeting"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="app-frm-buttons mt-5">
|
||||
<button id="btn-save" class="btn btn-success">Save</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
56
wwwroot/js/templates/app.licenseView.handlebars
Normal file
56
wwwroot/js/templates/app.licenseView.handlebars
Normal file
@@ -0,0 +1,56 @@
|
||||
<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>
|
||||
3
wwwroot/js/templates/app.licenses.handlebars
Normal file
3
wwwroot/js/templates/app.licenses.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<div id="rf-list" class="rf-list"/>
|
||||
</div>
|
||||
30
wwwroot/js/templates/app.mailEdit.handlebars
Normal file
30
wwwroot/js/templates/app.mailEdit.handlebars
Normal file
@@ -0,0 +1,30 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
<div class="form-group">
|
||||
<label for="message">Message</label>
|
||||
<textarea class="form-control" id="message" rows="20" readonly />
|
||||
</div>
|
||||
|
||||
<div id="sendToGroup" class="form-group invisible">
|
||||
<label for="sendTo">Send to</label>
|
||||
<input class="form-control" type="text" id="sendTo" name="sendTo" value="">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="composition">Reply</label>
|
||||
|
||||
<div class="btn-group float-right ml-5" role="group">
|
||||
<button id="btn-send" type="button" class="btn btn-sm btn-outline-primary mdi mdi-send"></button>
|
||||
</div>
|
||||
|
||||
<div class="form-check form-check-inline float-right">
|
||||
<label class="form-check-label">
|
||||
<input class="form-check-input" type="checkbox" id="trackDelivery" name="trackDelivery" >Receipt
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<textarea class="form-control" id="composition" name="composition" rows="10" />
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
</div>
|
||||
82
wwwroot/js/templates/app.purchaseEdit.handlebars
Normal file
82
wwwroot/js/templates/app.purchaseEdit.handlebars
Normal file
@@ -0,0 +1,82 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="name">Product 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="productCode">Product code</label>
|
||||
<input class="form-control" type="text" id="productCode" name="productCode" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="salesOrderNumber">Sales order number</label>
|
||||
<input class="form-control" type="text" id="salesOrderNumber" name="salesOrderNumber" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="vendorName">Vendor</label>
|
||||
<input class="form-control" type="text" id="vendorName" name="vendorName" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="purchaseDate">Purchased</label>
|
||||
<input class="form-control" type="date" id="purchaseDate" name="purchaseDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="renewNoticeSent">
|
||||
<input class="form-check-input" type="checkbox" name="renewNoticeSent" id="renewNoticeSent">
|
||||
Renew notice sent</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="expireDate">Subscription expire</label>
|
||||
<input class="form-control" type="date" id="expireDate" name="expireDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="cancelDate">Cancel date</label>
|
||||
<input class="form-control" type="date" id="cancelDate" name="cancelDate" value="">
|
||||
</div>
|
||||
</div>
|
||||
{{!-- <div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="email">Email</label>
|
||||
<input class="form-control" type="text" id="email" name="email" value="">
|
||||
</div>
|
||||
</div> --}}
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="couponCode">Coupon code</label>
|
||||
<input class="form-control" type="text" id="couponCode" name="couponCode" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="notes">ShareIt Order</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>
|
||||
<button id="btn-renew" class="btn btn-outline-primary">Renew</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
3
wwwroot/js/templates/app.purchases.handlebars
Normal file
3
wwwroot/js/templates/app.purchases.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
3
wwwroot/js/templates/app.reportData.handlebars
Normal file
3
wwwroot/js/templates/app.reportData.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
4
wwwroot/js/templates/app.reportDataExpires.handlebars
Normal file
4
wwwroot/js/templates/app.reportDataExpires.handlebars
Normal file
@@ -0,0 +1,4 @@
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
|
||||
32
wwwroot/js/templates/app.reportDataProdEmail.handlebars
Normal file
32
wwwroot/js/templates/app.reportDataProdEmail.handlebars
Normal file
@@ -0,0 +1,32 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
<div class="row">
|
||||
<div class="half column">
|
||||
<h6>Note: this will fetch all support and admin email addresses</h6>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<label for="nocontact">Include 'Do not contact' emails</label>
|
||||
<input type="checkbox" name="ckNoContact" id="ckNoContact">
|
||||
</div>
|
||||
|
||||
<fieldset>
|
||||
<legend>Products:</legend>
|
||||
<div id="cbdiv"></div>
|
||||
</fieldset>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="half column">
|
||||
|
||||
<div class="form-group">
|
||||
<label for="csvdata">Emails</label>
|
||||
<textarea id="csvdata" name="csvdata" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
109
wwwroot/js/templates/app.rfcaseEdit.handlebars
Normal file
109
wwwroot/js/templates/app.rfcaseEdit.handlebars
Normal file
@@ -0,0 +1,109 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
<div class="mb-4">
|
||||
<span class="display-4" id="caseid"></span>
|
||||
<span class="text-muted align-top" id="dtcreated"></span>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="title">Title</label>
|
||||
<input class="form-control" type="text" id="title" name="title" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="project">Project</label>
|
||||
<select class="form-control" name="rfCaseProjectId" id="rfCaseProjectId" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="priority">Priority</label>
|
||||
<select class="form-control" name="priority" id="priority">
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
<option value="5">5</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{!--
|
||||
<div class="col-sm-12">
|
||||
<div class="btn-group" role="group">
|
||||
<button id="btn-append" type="button" class="btn btn-outline-primary">Append</button>
|
||||
</div>
|
||||
</div> --}}
|
||||
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="notes">Notes</label>
|
||||
<div class="btn-group float-right" role="group">
|
||||
<button id="btn-append" type="button" class="btn btn-sm btn-outline-primary">Append</button>
|
||||
</div>
|
||||
|
||||
<textarea class="form-control" id="notes" name="notes" rows="15" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="dtClosed"> Closed</label>
|
||||
<input class="form-control" type="date" id="dtClosed" name="dtClosed" value="">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
<label for="title">Released in version</label>
|
||||
<input class="form-control" type="text" id="releaseVersion" name="releaseVersion" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-12">
|
||||
<div class="form-group">
|
||||
<label for="title">Release notes</label>
|
||||
<input class="form-control" type="text" id="releaseNotes" name="releaseNotes" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-sm-12">
|
||||
<label for="attachments">Attachments</label>
|
||||
<ul id="attachments" class="list-group">
|
||||
</ul>
|
||||
</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>
|
||||
|
||||
|
||||
|
||||
<form id="frmUpload" class="invisible my-5" method="post" enctype="multipart/form-data" action="/api/rfcaseblob/upload?rfcaseid=1">
|
||||
<hr/>
|
||||
<div>
|
||||
<p>Upload attachments:</p>
|
||||
<input type="file" name="files" id="files" multiple/>
|
||||
</div>
|
||||
<input type="button" id="btn-upload" value="Attach selected files" />
|
||||
</form>
|
||||
|
||||
</div>
|
||||
50
wwwroot/js/templates/app.rfcases.handlebars
Normal file
50
wwwroot/js/templates/app.rfcases.handlebars
Normal file
@@ -0,0 +1,50 @@
|
||||
<div>
|
||||
|
||||
<div class="row">
|
||||
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="form-group">
|
||||
<label for="project">Projects</label>
|
||||
<select class="form-control" id="projects" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label" for="open">
|
||||
<input class="form-check-input" type="checkbox" id="open" checked/>
|
||||
Open</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="form-group">
|
||||
<label for="priority">Priority</label>
|
||||
<select class="form-control" id="priority">
|
||||
<option value="0" selected >All</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
<option value="5">5</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="form-group">
|
||||
<label for="csearch">Search</label>
|
||||
<input class="form-control" type="text" id="csearch" value="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<hr/>
|
||||
|
||||
<div>
|
||||
<div id="rf-list-count"/>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
</div>
|
||||
15
wwwroot/js/templates/app.rfsettings.handlebars
Normal file
15
wwwroot/js/templates/app.rfsettings.handlebars
Normal file
@@ -0,0 +1,15 @@
|
||||
<div>
|
||||
<div class="alert alert-success mb-5" id="about" />
|
||||
|
||||
<form id="frm" method="post" action="index.html">
|
||||
|
||||
<div class="form-group">
|
||||
<label for="oldpassword">Change password</label>
|
||||
<input class="form-control" type="text" id="oldpassword" name="oldpassword" placeholder="current password" value="">
|
||||
<input class="form-control" type="text" id="newpassword" name="newpassword" placeholder="new password" value="">
|
||||
<div class="app-frm-buttons mt-5">
|
||||
<button id="btn-change-password">Update</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
18
wwwroot/js/templates/app.search.handlebars
Normal file
18
wwwroot/js/templates/app.search.handlebars
Normal file
@@ -0,0 +1,18 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
|
||||
<div class="form-group">
|
||||
<label for="query">Search</label>
|
||||
<input class="form-control" type="text" id="searchquery" value="">
|
||||
<div class="app-frm-buttons">
|
||||
<button id="searchbutton">Search</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
</div>
|
||||
57
wwwroot/js/templates/app.shell.handlebars
Normal file
57
wwwroot/js/templates/app.shell.handlebars
Normal file
@@ -0,0 +1,57 @@
|
||||
<nav id="rf-nav" class="navbar fixed-top navbar-expand-lg navbar-dark bg-primary">
|
||||
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
|
||||
<li id="inbox" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-inbox" href="#!/inbox">Inbox </a>
|
||||
</li>
|
||||
|
||||
<li id="customers" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-contacts" href="#!/customers">Customers </a>
|
||||
</li>
|
||||
|
||||
<li id="subscriptions" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-basket" href="#!/subscription">Subscriptions </a>
|
||||
</li>
|
||||
|
||||
<li id="license" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-key" href="#!/license">License </a>
|
||||
</li>
|
||||
|
||||
<li id="rfcases" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-bug" href="#!/rfcases">Cases </a>
|
||||
</li>
|
||||
|
||||
<li id="rfsettings" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-settings" href="#!/rfsettings">Settings </a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-logout" href="#!/logout">Log off </a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
<div class="rf-content mx-2 ">
|
||||
<div id="app-error-div" class="alert alert-danger d-none" role="alert">
|
||||
<p id="app-error-message"></p>
|
||||
</div>
|
||||
<div>
|
||||
<div id="rf-context-group" class="btn-group my-3" role="group">
|
||||
</div>
|
||||
</div>
|
||||
<main id="app-shell-main-content">
|
||||
|
||||
</main>
|
||||
</div>
|
||||
4
wwwroot/js/templates/app.subnotify.handlebars
Normal file
4
wwwroot/js/templates/app.subnotify.handlebars
Normal file
@@ -0,0 +1,4 @@
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
|
||||
3
wwwroot/js/templates/app.subscription.handlebars
Normal file
3
wwwroot/js/templates/app.subscription.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
28
wwwroot/js/templates/app.templateEdit.handlebars
Normal file
28
wwwroot/js/templates/app.templateEdit.handlebars
Normal file
@@ -0,0 +1,28 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-12">
|
||||
<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-12">
|
||||
<div class="form-group">
|
||||
<label for="template">template</label>
|
||||
<textarea class="form-control" id="template" name="template" rows="15" />
|
||||
</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>
|
||||
3
wwwroot/js/templates/app.templates.handlebars
Normal file
3
wwwroot/js/templates/app.templates.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<ul id="rf-list" class="rf-list" />
|
||||
</div>
|
||||
2
wwwroot/js/templates/templates.js
Normal file
2
wwwroot/js/templates/templates.js
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user