mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-31 07:11:33 +00:00
Enforce pass min/max lengths in dashboard
This commit is contained in:
parent
c3d61733af
commit
6e27115f38
2
dist/js/dashboard.js
vendored
2
dist/js/dashboard.js
vendored
File diff suppressed because one or more lines are too long
2
dist/js/dashboard.js.map
vendored
2
dist/js/dashboard.js.map
vendored
File diff suppressed because one or more lines are too long
@ -1656,13 +1656,13 @@ page.changePassword = (params = {}) => {
|
||||
<div class="field">
|
||||
<label class="label">New password:</label>
|
||||
<div class="control">
|
||||
<input id="password" class="input" type="password" min="6" max="64">
|
||||
<input id="password" class="input" type="password" minlength="6" maxlength="64">
|
||||
</div>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label class="label">Re-type new password:</label>
|
||||
<div class="control">
|
||||
<input id="passwordConfirm" class="input" type="password" min="6" max="64">
|
||||
<input id="passwordConfirm" class="input" type="password" minlength="6" maxlength="64">
|
||||
</div>
|
||||
</div>
|
||||
<div class="field">
|
||||
@ -1681,6 +1681,7 @@ page.changePassword = (params = {}) => {
|
||||
page.updateTrigger(params.trigger, 'active')
|
||||
|
||||
document.querySelector('#sendChangePassword').addEventListener('click', event => {
|
||||
if (!page.dom.querySelector('form').checkValidity()) return
|
||||
if (document.querySelector('#password').value === document.querySelector('#passwordConfirm').value)
|
||||
page.sendNewPassword(document.querySelector('#password').value, event.currentTarget)
|
||||
else
|
||||
|
4
todo.md
4
todo.md
@ -17,9 +17,9 @@ Normal priority:
|
||||
* [x] Show expiry date in thumbs view.
|
||||
* [ ] Add Select all checkbox somewhere in thumbs view.
|
||||
* [x] Display renders after API check.
|
||||
* [ ] Enforce pass min/max lengths in dashboard's change password form.
|
||||
* [x] Enforce pass min/max lengths in dashboard's change password form.
|
||||
* [ ] Add a copy all links to clipboard when there are more than 2 uploads in history.
|
||||
* [*] Update fb_share.png.
|
||||
* [x] Update fb_share.png.
|
||||
|
||||
Low priority:
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
v3: CSS and JS files (libs such as bulma, lazyload, etc).
|
||||
v4: Renders in /public/render/* directories (to be used by render.js).
|
||||
#}
|
||||
{% set v1 = "YFsTqC68Bc" %}
|
||||
{% set v1 = "sWcNtiNy3c" %}
|
||||
{% set v2 = "hiboQUzAzp" %}
|
||||
{% set v3 = "YFsTqC68Bc" %}
|
||||
{% set v4 = "S3TAWpPeFS" %}
|
||||
|
Loading…
Reference in New Issue
Block a user