We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent30d5ac0 commit4fa0712Copy full SHA for 4fa0712
site/src/pages/LoginPage/SignInForm.tsx
@@ -5,6 +5,7 @@ import { PasswordSignInForm } from "./PasswordSignInForm";
5
import{OAuthSignInForm}from"./OAuthSignInForm";
6
import{Alert}from"components/Alert/Alert";
7
import{ErrorAlert}from"components/Alert/ErrorAlert";
8
+import{getApplicationName}from"utils/appearance";
9
10
exportconstLanguage={
11
emailLabel:"Email",
@@ -80,10 +81,11 @@ export const SignInForm: FC<React.PropsWithChildren<SignInFormProps>> = ({
80
81
authMethods?.github.enabled||authMethods?.oidc.enabled,
82
);
83
constpasswordEnabled=authMethods?.password.enabled??true;
84
+constapplicationName=getApplicationName();
85
86
return(
87
<divcss={styles.root}>
-<h1css={styles.title}>Sign in</h1>
88
+<h1css={styles.title}>{applicationName}</h1>
89
90
{Boolean(error)&&(
91
<divcss={styles.alert}>