Complain if they log in with email
This commit is contained in:
parent
a757534061
commit
f88256eb74
|
@ -13,20 +13,24 @@ export function LoginForm(props) {
|
||||||
const handleChange = (e) => handleValues(e, e.currentTarget);
|
const handleChange = (e) => handleValues(e, e.currentTarget);
|
||||||
|
|
||||||
const handleSubmit = (e) => {
|
const handleSubmit = (e) => {
|
||||||
if (loading) return;
|
if (input.username.includes('@')) {
|
||||||
setLoading(true);
|
setError({ username: 'Username, not email.' });
|
||||||
const data = { ...input, username: input.username.toLowerCase() };
|
} else {
|
||||||
requester('/rest-auth/login/', 'POST', '', data)
|
if (loading) return;
|
||||||
.then(res => {
|
setLoading(true);
|
||||||
setError({});
|
const data = { ...input, username: input.username.toLowerCase() };
|
||||||
props.setTokenCache(res.key);
|
requester('/rest-auth/login/', 'POST', '', data)
|
||||||
window.scrollTo(0, 0);
|
.then(res => {
|
||||||
})
|
setError({});
|
||||||
.catch(err => {
|
props.setTokenCache(res.key);
|
||||||
setLoading(false);
|
window.scrollTo(0, 0);
|
||||||
console.log(err);
|
})
|
||||||
setError(err.data);
|
.catch(err => {
|
||||||
});
|
setLoading(false);
|
||||||
|
console.log(err);
|
||||||
|
setError(err.data);
|
||||||
|
});
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in New Issue
Block a user