add skin on registration complete page
All checks were successful
delpoy / build-and-deploy (push) Successful in 51s

This commit is contained in:
2023-11-30 14:49:35 +01:00
parent 63605e23b1
commit cf90924672
6 changed files with 113 additions and 11 deletions

View File

@ -44,7 +44,7 @@
body: new FormData(document.forms[0])
});
if (response.ok) {
dispatch('submit', {});
dispatch('submit', { username: usernameInput.value });
resolve();
} else if (response.status < 500) {
reject(Error((await response.json()).message));