trilium/src/views/dialogs/password_not_set.ejs

20 lines
898 B
Plaintext

<div id="password-not-set-dialog" class="modal fade mx-auto" tabindex="-1" role="dialog">
<div class="modal-dialog modal-md" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title mr-auto">Password is not set</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" style="margin-left: 0;">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
Protected notes are encrypted using a user password, but password has not been set yet.
To be able to protect notes, <a id="open-password-options-button" href="javascript:">
click here to open the Options dialog</a> and set your password.
</div>
</div>
</div>
</div>