Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add login page #36

Merged
merged 15 commits into from
Feb 23, 2024
2 changes: 2 additions & 0 deletions frontend/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
// "@typescript-eslint/no-explicit-any": "off",
// "@typescript-eslint/no-non-null-assertion": "off",

"@typescript-eslint/no-unsafe-assignment": "warn",

// Avoid bugs.
"@typescript-eslint/no-misused-promises": [
2,
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import CreateUser from "./create_user";
import Login from "./login";

export default function Home() {
return <CreateUser />;
return <Login />;
}
Loading