cloudcmd/html/config.html
2015-05-28 05:02:13 -04:00

130 lines
3.1 KiB
HTML

<ul class="list" >
<li>
<label>
<input data-name="js-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-root"
title="Root"
value="{{ root }}"
placeholder="root"
class="form-control">
</li>
<li>
<input
data-name="js-port"
min="0"
max="65535"
title="Port"
type="number"
value="{{ port }}"
placeholder="Port"
class="form-control">
</li>
<li>
<label>
<input data-name="js-progressOfCopying" type="checkbox" {{ progressOfCopying }}>
Progress of copying
</label>
</li>
</ul>