Skip to content

Commit 07e1fe2

Browse files
committed
minor fixes
1 parent 5652577 commit 07e1fe2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/config/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,33 @@ export const registerFormControls = [
99
{
1010
name: "email",
1111
label: "Email",
12-
placeholder: "[email protected]",
12+
placeholder: "Enter your email",
1313
componentType: "input",
1414
type: "email",
1515
},
1616
{
1717
name: "password",
1818
label: "Password",
19-
placeholder: "12345",
19+
placeholder: "Enter your password",
2020
componentType: "input",
21-
type: "test",
21+
type: "password",
2222
},
2323
];
2424

2525
export const loginFormControls = [
2626
{
2727
name: "email",
2828
label: "Email",
29-
placeholder: "Enter your email",
29+
placeholder: "[email protected]",
3030
componentType: "input",
3131
type: "email",
3232
},
3333
{
3434
name: "password",
3535
label: "Password",
36-
placeholder: "Enter your password",
36+
placeholder: "12345",
3737
componentType: "input",
38-
type: "password",
38+
type: "text",
3939
},
4040
];
4141

0 commit comments

Comments
 (0)