Fix form password + remove branding

This commit is contained in:
Julien Nahum 2024-01-16 18:27:58 +01:00
parent bd5fa87997
commit 07dbc3adf3
2 changed files with 12 additions and 7 deletions

View File

@ -85,6 +85,7 @@ class FormResource extends JsonResource
'is_password_protected' => true,
'has_password' => $this->has_password,
'width' => 'centered',
'no_branding' => $this->no_branding,
'properties' => []
];
}

View File

@ -75,15 +75,20 @@ onBeforeRouteLeave((to, from) => {
})
const passwordEntered = function (password) {
useCookie('password-' + slug, {
const cookie = useCookie('password-' + slug, {
maxAge: 60 * 60 * 7,
sameSite: false,
secure: true
}).value = sha256(password)
loadForm().then(() => {
if (form.value?.is_password_protected) {
openCompleteForm.value.addPasswordError('Invalid password.')
}
})
cookie.value = sha256(password)
nextTick(() => {
console.log('cookie value:',cookie.value)
loadForm().then(() => {
if (form.value?.is_password_protected) {
openCompleteForm.value.addPasswordError('Invalid password.')
}
})
openCompleteForm.value.submit()
})
}
@ -121,7 +126,6 @@ const loadForm = async (setup=false) => {
}
onMounted(() => {
loadForm()
if (form.value) {
handleDarkMode(form.value?.dark_mode)
handleTransparentMode(form.value?.transparent_background)