-
- {error && error.message}
- {data && data.login && data.login.success &&
}
+
+
+

+
+
)
}
diff --git a/src/components/Login/main.module.css b/src/components/Login/main.module.css
new file mode 100644
index 0000000..f5eef25
--- /dev/null
+++ b/src/components/Login/main.module.css
@@ -0,0 +1,81 @@
+.container {
+ display: flex;
+ min-height: calc(100% - 4rem);
+ align-items: center;
+ justify-content: center;
+ padding: 2.3rem;
+}
+
+.formCard {
+ min-width: 50vw;
+ background-color: #ffffff;
+ border-radius: 20px;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ max-width: 90vw;
+ overflow: hidden;
+}
+
+.img {
+ height: 70vh;
+ object-fit: contain;
+}
+
+.form {
+ padding: 20px;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ gap: 5px;
+}
+
+.form input {
+ height: 2.3rem;
+ border-radius: 100vh;
+ border: none;
+ outline: none;
+ font-size: 1.2rem;
+ padding: 0 0.7rem;
+ width: 100%;
+}
+
+.form label {
+ padding: 0 0.7rem;
+}
+
+.header {
+ text-align: center;
+}
+
+.input {
+ border-bottom: 0.15rem var(--containerColor) solid !important;
+ transition: border-bottom 0.1s;
+}
+.input:focus {
+ border-bottom-width: 0rem !important;
+}
+
+.button {
+ background-color: var(--accentColor);
+}
+
+.errorMsg {
+ color: red;
+}
+
+.focus {
+ color: var(--accentColor);
+}
+
+@media (orientation: portrait) {
+ .formCard {
+ grid-template-columns: 1fr;
+ grid-template-rows: 1fr 1fr;
+ min-height: calc(100% - 4rem);
+ }
+
+ .img {
+ height: initial;
+ width: 100%;
+ }
+}
diff --git a/src/components/Login/meme.png b/src/components/Login/meme.png
new file mode 100644
index 0000000..865e6c5
Binary files /dev/null and b/src/components/Login/meme.png differ
diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx
new file mode 100644
index 0000000..c0f0f1a
--- /dev/null
+++ b/src/components/Navbar/index.tsx
@@ -0,0 +1,14 @@
+import React from 'react'
+import { Link } from 'react-router-dom'
+import styles from './main.module.css'
+import logo from './logo.svg'
+
+const Navbar: React.FC = () => (
+
+)
+
+export default Navbar
diff --git a/src/components/Navbar/logo.svg b/src/components/Navbar/logo.svg
new file mode 100644
index 0000000..db56a90
--- /dev/null
+++ b/src/components/Navbar/logo.svg
@@ -0,0 +1,26 @@
+
+
+
+
diff --git a/src/components/Navbar/main.module.css b/src/components/Navbar/main.module.css
new file mode 100644
index 0000000..2d573e3
--- /dev/null
+++ b/src/components/Navbar/main.module.css
@@ -0,0 +1,16 @@
+.nav {
+ display: flex;
+ width: 100vw;
+ height: 4rem;
+ align-items: center;
+ justify-content: center;
+ background-color: var(--containerColor);
+ border-bottom-left-radius: 20px;
+ border-bottom-right-radius: 20px;
+}
+
+.logo {
+ display: block;
+ height: 2.7rem;
+ width: 2.7rem;
+}
diff --git a/src/components/Register/index.tsx b/src/components/Register/index.tsx
index 4727df0..bb647e5 100644
--- a/src/components/Register/index.tsx
+++ b/src/components/Register/index.tsx
@@ -1,8 +1,11 @@
import { useMutation } from '@apollo/client'
import React, { FormEvent } from 'react'
import { Redirect } from 'react-router-dom'
+
import { REGISTER } from '../../apollo'
import { MutationRegisterArgs, ServerAnswer } from '../../apollo/typeDefs.gen'
+import styles from '../Login/main.module.css'
+import meme from './meme.jpg'
interface IRegisterMutation {
register: ServerAnswer
@@ -29,15 +32,36 @@ const Register: React.FC = () => {
}
return (
-
- Register
-
+
+
+

+
+
)
}
diff --git a/src/components/Register/meme.jpg b/src/components/Register/meme.jpg
new file mode 100644
index 0000000..bb6004d
Binary files /dev/null and b/src/components/Register/meme.jpg differ
diff --git a/src/index.css b/src/index.css
index ec2585e..98b5c39 100644
--- a/src/index.css
+++ b/src/index.css
@@ -11,3 +11,7 @@ code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
+
+.App {
+ height: 100vh;
+}
diff --git a/tsconfig.json b/tsconfig.json
index af10394..a8f02a4 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -13,7 +13,8 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
- "jsx": "react"
+ "jsx": "react",
+ "plugins": [{ "name": "typescript-plugin-css-modules" }]
},
"include": ["src"]
}