diff --git a/frontend/src/Security/LoginPage.tsx b/frontend/src/Security/LoginPage.tsx
index 4683934..c38fb81 100644
--- a/frontend/src/Security/LoginPage.tsx
+++ b/frontend/src/Security/LoginPage.tsx
@@ -19,27 +19,31 @@ export default function LoginPage(props: Props) {
return (
- <>
-
-
- ) => {setUsername(event.target.value)}}
- placeholder={"Username"}/>
-
-
- ) => {setPassword(event.target.value)}}
- placeholder={"Password"} type={"password"}/>
-
-
-
- ☺︎ Not registered yet?
-
+
+
+ ) => {
+ setUsername(event.target.value)
+ }}
+ placeholder={"Username"}/>
+
+
+ ) => {
+ setPassword(event.target.value)
+ }}
+ placeholder={"Password"} type={"password"}/>
+
+
+
+ ☺︎ Not registered yet?
- >
+
)
}
diff --git a/frontend/src/Security/RegisterPage.tsx b/frontend/src/Security/RegisterPage.tsx
index ec24e80..78d85c0 100644
--- a/frontend/src/Security/RegisterPage.tsx
+++ b/frontend/src/Security/RegisterPage.tsx
@@ -16,27 +16,31 @@ export default function RegisterPage(props: Props) {
}
return (
- <>
-
-
- ) => {setUsername(event.target.value)}}
- placeholder={"Username"}/>
-
-
- ) => {setPassword(event.target.value)}}
- placeholder={"Password"} type={"password"}/>
-
-
-
- ☺︎ Welcome to the KoToKo!
-
+
+
+ ) => {
+ setUsername(event.target.value)
+ }}
+ placeholder={"Username"}/>
+
+
+ ) => {
+ setPassword(event.target.value)
+ }}
+ placeholder={"Password"} type={"password"}/>
+
+
+
+ ☺︎ Welcome to the KoToKo!
- >
+
)
}