mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 19:37:47 +01:00
Merge pull request #16233 from andrewbbaek/dev
fix: add conditional password confirmation on signup
This commit is contained in:
@@ -64,10 +64,12 @@
|
||||
};
|
||||
|
||||
const signUpHandler = async () => {
|
||||
if ($config?.features?.enable_signup_password_confirmation) {
|
||||
if (password !== confirmPassword) {
|
||||
toast.error($i18n.t('Passwords do not match.'));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
const sessionUser = await userSignUp(name, email, password, generateInitialsImage(name)).catch(
|
||||
(error) => {
|
||||
|
||||
Reference in New Issue
Block a user