We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f3f899 commit 4300d5aCopy full SHA for 4300d5a
src/pages/Authentication/Login.tsx
@@ -30,7 +30,7 @@ const Login: React.FC = () => {
30
31
const onSubmit = (values: ILoginFormValues, submitProps: FormikHelpers<ILoginFormValues>) => {
32
// Mock authentication - bypass real backend
33
- const MOCK_USERNAME = "instructor6";
+ const MOCK_USERNAME = "admin";
34
const MOCK_PASSWORD = "password";
35
36
if (values.user_name === MOCK_USERNAME && values.password === MOCK_PASSWORD) {
@@ -81,7 +81,7 @@ const Login: React.FC = () => {
81
dispatch(
82
alertActions.showAlert({
83
variant: "danger",
84
- message: "Use username: 'instructor6' and password: 'password'",
+ message: "Use username: 'admin' and password: 'password'",
85
title: "Unable to authenticate user!",
86
})
87
);
0 commit comments