Spaces:
Running
Running
Tai Truong
commited on
Commit
·
9c1a389
1
Parent(s):
fe64285
update name
Browse files
src/frontend/src/pages/SignUpPage/index.tsx
CHANGED
@@ -20,6 +20,7 @@ import {
|
|
20 |
inputHandlerEventType,
|
21 |
signUpInputStateType,
|
22 |
} from "../../types/components";
|
|
|
23 |
|
24 |
export default function SignUp(): JSX.Element {
|
25 |
const [inputState, setInputState] =
|
@@ -91,16 +92,9 @@ export default function SignUp(): JSX.Element {
|
|
91 |
>
|
92 |
<div className="flex h-full w-full flex-col items-center justify-center bg-muted">
|
93 |
<div className="flex w-72 flex-col items-center justify-center gap-2">
|
94 |
-
{
|
95 |
-
<LangflowLogo
|
96 |
-
title="Langflow logo"
|
97 |
-
className="mb-4 h-10 w-10 scale-[1.5]"
|
98 |
-
/>
|
99 |
-
) : (
|
100 |
-
<span className="mb-4 text-5xl">⛓️</span>
|
101 |
-
)}
|
102 |
<span className="mb-6 text-2xl font-semibold text-primary">
|
103 |
-
|
104 |
</span>
|
105 |
<div className="mb-3 w-full">
|
106 |
<Form.Field name="username">
|
|
|
20 |
inputHandlerEventType,
|
21 |
signUpInputStateType,
|
22 |
} from "../../types/components";
|
23 |
+
import logo from '@/assets/logo-short.png'
|
24 |
|
25 |
export default function SignUp(): JSX.Element {
|
26 |
const [inputState, setInputState] =
|
|
|
92 |
>
|
93 |
<div className="flex h-full w-full flex-col items-center justify-center bg-muted">
|
94 |
<div className="flex w-72 flex-col items-center justify-center gap-2">
|
95 |
+
<img src={logo} alt="logo" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
<span className="mb-6 text-2xl font-semibold text-primary">
|
97 |
+
OpenDigital.no
|
98 |
</span>
|
99 |
<div className="mb-3 w-full">
|
100 |
<Form.Field name="username">
|