Skip to content
Snippets Groups Projects
Verified Commit 9915eb7c authored by Defendi Alberto's avatar Defendi Alberto
Browse files

Replace email with username.

parent dd6c857a
No related branches found
No related tags found
2 merge requests!56Refined auth flow and new website pages.,!42Feature/registration
This commit is part of merge request !42. Comments created here will be created in the context of that merge request.
...@@ -11,12 +11,12 @@ export const SignInForm: FC = () => { ...@@ -11,12 +11,12 @@ export const SignInForm: FC = () => {
const history = useHistory(); const history = useHistory();
interface FormData { interface FormData {
email: string; username: string;
password: string; password: string;
} }
const defaultValues: FormData = { const defaultValues: FormData = {
email: '', username: '',
password: '', password: '',
}; };
...@@ -29,8 +29,9 @@ export const SignInForm: FC = () => { ...@@ -29,8 +29,9 @@ export const SignInForm: FC = () => {
.post( .post(
'/api/web/login', '/api/web/login',
{ {
username: values.email, username: values.username,
password: values.password, password: values.password,
csrfmiddlewaretoken: sessionStorage.getItem('X-CSRFTOKEN'),
}, },
{ {
headers: { headers: {
...@@ -40,9 +41,9 @@ export const SignInForm: FC = () => { ...@@ -40,9 +41,9 @@ export const SignInForm: FC = () => {
) )
.then((response) => { .then((response) => {
if (response.data.status === 'fail') { if (response.data.status === 'fail') {
setError('email', { setError('username', {
type: 'server', type: 'server',
message: 'Something went wrong with email', message: 'Something went wrong with username',
}); });
setError('password', { setError('password', {
type: 'server', type: 'server',
...@@ -63,19 +64,17 @@ export const SignInForm: FC = () => { ...@@ -63,19 +64,17 @@ export const SignInForm: FC = () => {
data-testid="Form" data-testid="Form"
> >
<InputField <InputField
name="email" name="username"
control={control} control={control}
rules={{ rules={{
validate: (value: string) =>
/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i.test(value),
required: { required: {
value: true, value: true,
message: 'Email is not valid', message: 'Username is not valid',
}, },
}} }}
label="Email" label="username"
error={!!errors.email} error={!!errors.username}
errorMessage="Insert email" errorMessage="Insert username"
/> />
<InputField <InputField
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment