Added login functionality

This commit is contained in:
Keannu Christian Bernasol 2023-07-03 22:11:04 +08:00
parent 26b3db25f0
commit a634f07f2b
3 changed files with 43 additions and 9 deletions

View file

@ -2,8 +2,17 @@ export default function ParseError(text: string) {
return text
.replaceAll(/[{}()"]/g, " ")
.replaceAll(/,/g, "\n")
.replaceAll(":", "")
.replaceAll("[", "")
.replaceAll("]", "")
.replaceAll(".", "");
}
export function ParseLoginError(text: string) {
return text
.replaceAll(/[{}()"]/g, " ")
.replaceAll(/,/g, "\n")
.replaceAll("[", "")
.replaceAll("]", "")
.replaceAll(".", "")
.replaceAll("non_field_errors", "");
}