2016-07-27 13:18:57 +02:00
|
|
|
<form>
|
2017-03-23 18:28:42 +00:00
|
|
|
<div class="form-header">
|
|
|
|
<div class="title">Instance Settings</div>
|
|
|
|
<div class="tip">Settings applicable to your Documize instance</div>
|
|
|
|
</div>
|
|
|
|
<div class="input-control">
|
|
|
|
<label>Title</label>
|
|
|
|
<div class="tip">Describe the title of this Documize instance</div>
|
|
|
|
{{focus-input id="siteTitle" type="text" value=model.general.title class=(if hasTitleInputError 'error')}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control">
|
|
|
|
<label>Message</label>
|
|
|
|
<div class="tip">Describe the purpose of this Documize instance</div>
|
|
|
|
{{textarea id="siteMessage" rows="3" value=model.general.message class=(if hasMessageInputError 'error')}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control">
|
|
|
|
<label>Anonymous Access</label>
|
|
|
|
<div class="tip">Content within "Everyone" will be made available to anonymous users</div>
|
|
|
|
<div class="checkbox">
|
2017-06-06 19:00:35 -04:00
|
|
|
<input type="checkbox" id="allowAnonymousAccess" checked={{model.general.allowAnonymousAccess}} />
|
2017-03-23 18:28:42 +00:00
|
|
|
<label for="allowAnonymousAccess">Allow anyone to access this Documize instance</label>
|
2016-07-27 13:18:57 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-06-06 19:00:35 -04:00
|
|
|
<div class="input-control">
|
|
|
|
<label>Conversion Service URL</label>
|
|
|
|
<div class="tip">Endpoint for handling import/export (e.g. https://api.documize.com, <a href="https://docs.documize.com/s/WNEpptWJ9AABRnha/administration-guides/d/WO0pt_MXigAB6sJ7/general-options">view documentation</a>)</div>
|
|
|
|
{{focus-input id="conversionEndpoint" type="text" value=model.general.conversionEndpoint class=(if hasConversionEndpointInputError 'error')}}
|
|
|
|
</div>
|
2017-03-23 18:28:42 +00:00
|
|
|
<div class="regular-button button-blue" {{ action 'save' }}>save</div>
|
2016-07-27 13:18:57 +02:00
|
|
|
</form>
|