Skip to content

Commit

Permalink
Merge pull request sinamics#513 from sinamics/sigin-page-title
Browse files Browse the repository at this point in the history
Added login page title
  • Loading branch information
sinamics authored Aug 22, 2024
2 parents c3fcb0e + 7f03f35 commit ea7288d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/auth/login/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ import { useRouter } from "next/router";
import classNames from "classnames";
import { ErrorCode, getErrorMessage } from "~/utils/errorCode";
import { useTranslations } from "next-intl";
import { globalSiteTitle } from "~/utils/global";

const Login = ({ title, oauthExclusiveLogin, oauthEnabled }) => {
const title = `${globalSiteTitle} - Sign In`;

const Login = ({ oauthExclusiveLogin, oauthEnabled }) => {
const t = useTranslations();
const currentYear = new Date().getFullYear();
const { data: options, isLoading: loadingRegistration } =
Expand Down

0 comments on commit ea7288d

Please sign in to comment.