mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
116 lines
2.7 KiB
HTML
116 lines
2.7 KiB
HTML
<ul class="list" >
|
|
<li>
|
|
<label>
|
|
<input id="auth" type="checkbox" {{ auth }} >
|
|
Auth
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<input
|
|
data-name="js-username"
|
|
type="text"
|
|
class="form-control"
|
|
placeholder="username"
|
|
value="{{ username }}"
|
|
title="Username">
|
|
</li>
|
|
<li>
|
|
<input
|
|
data-name="js-password"
|
|
type="password"
|
|
class="form-control"
|
|
placeholder="password"
|
|
value="{{ password }}"
|
|
title="Password">
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input
|
|
data-name="js-diff"
|
|
type="checkbox"
|
|
{{ diff }}>
|
|
Diff
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input
|
|
data-name="js-zip"
|
|
type="checkbox"
|
|
{{ zip }}>
|
|
Zip
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<select data-name="js-editor" class="form-control full-width" title="Editor">
|
|
<option {{ edward-selected }}>edward</option>
|
|
<option {{ dword-selected }}>dword</option>
|
|
</select>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input
|
|
data-name="js-notifications"
|
|
type="checkbox"
|
|
{{ notifications }}>
|
|
Notifications
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input
|
|
data-name="js-localStorage"
|
|
type="checkbox"
|
|
{{ localStorage }}>
|
|
Local Storage
|
|
</label>
|
|
</li>
|
|
<li>
|
|
|
|
<label>
|
|
<input data-name="js-buffer" type="checkbox" {{ buffer }}>
|
|
Buffer
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input data-name="js-dirStorage" type="checkbox" {{ dirStorage }} >
|
|
Directory Storage
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input data-name="js-minify" type="checkbox" {{ minify }}>
|
|
Minify
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input data-name="js-online" type="checkbox" {{ online }}>
|
|
Online
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input data-name="js-cache" type="checkbox" {{ cache }} >
|
|
Cache
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
<input data-name="js-showKeysPanel" type="checkbox" {{ showKeysPanel }}>
|
|
Show keys panel
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<input
|
|
data-name="js-port"
|
|
min="0"
|
|
max="65535"
|
|
title="Port"
|
|
type="number"
|
|
value="{{ port }}"
|
|
placeholder="Port"
|
|
class="form-control">
|
|
</li>
|
|
</ul>
|