mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 00:17:03 +03:00
24 lines
930 B
HTML
24 lines
930 B
HTML
<div class="modal-body">
|
|
<div data-bind="html: askDesc"></div>
|
|
<form class="form-horizontal" data-bind="visible: askPass() || askUsername(), submit: yesClick" style="margin: 2em 0 0" id="AskForm">
|
|
<div class="control-group" data-bind="visible: askUsername">
|
|
<label data-i18n="GLOBAL/USERNAME"></label>
|
|
<input type="text" data-bind="value: username">
|
|
</div>
|
|
<div class="control-group" data-bind="visible: askPass">
|
|
<label data-i18n="GLOBAL/PASSWORD"></label>
|
|
<input type="password" data-bind="value: passphrase">
|
|
</div>
|
|
<div data-bind="visible: askRemeber, component: {
|
|
name: 'Checkbox',
|
|
params: {
|
|
label: 'GLOBAL/REMEMBER',
|
|
value: remember
|
|
}
|
|
}"></div>
|
|
</form>
|
|
</div>
|
|
<footer>
|
|
<button class="btn buttonYes" form="AskForm" data-bind="click: yesClick, text: yesButton" data-icon="✔"></button>
|
|
<button class="btn buttonNo" data-bind="click: noClick, text: noButton" data-icon="✖"></button>
|
|
</footer>
|