-
-
Interest Form
-
- description of filling out interest form to start account
- registration process
-
-
-
- {
- setShowLicenseHelper(!showLicenseHelper);
- }}
- formState={formState}
- showLicenseField={
- !inviteId || (inviteId && user.role == 'FIRST_RESPONDER')
- }
- />
-
+
+
+
Interest Form
+
+ description of filling out interest form to start account registration
+ process
+
+
+ {
+ setShowLicenseHelper(!showLicenseHelper);
+ }}
+ formState={formState}
+ showLicenseField={
+ !inviteId || (inviteId && user.role == 'FIRST_RESPONDER')
+ }
+ />
+
);
}
diff --git a/client/src/stories/AuthLayout/AuthLayout.jsx b/client/src/stories/AuthLayout/AuthLayout.jsx
index d6bf5d48..482697da 100644
--- a/client/src/stories/AuthLayout/AuthLayout.jsx
+++ b/client/src/stories/AuthLayout/AuthLayout.jsx
@@ -1,15 +1,18 @@
import React from 'react';
import { Outlet } from 'react-router-dom';
-import './authlayout.css';
+import classes from './authlayout.module.css';
+
/**
* Auth Layout for login, register, password reset
*/
export default function AuthLayout() {
return (
-
-
testing
-
+
);
}
diff --git a/client/src/stories/AuthLayout/authlayout.css b/client/src/stories/AuthLayout/authlayout.module.css
similarity index 56%
rename from client/src/stories/AuthLayout/authlayout.css
rename to client/src/stories/AuthLayout/authlayout.module.css
index c8e7ecc1..a892f4b8 100644
--- a/client/src/stories/AuthLayout/authlayout.css
+++ b/client/src/stories/AuthLayout/authlayout.module.css
@@ -1,17 +1,21 @@
.auth-layout {
width: 100vw;
- height: 100vh;
- height: 100dvh;
+ min-height: 100vh;
+ min-height: 100dvh;
}
.banner {
display: none;
}
+.form {
+ padding: 2rem 1rem;
+}
+
@media (min-width: 48em) {
.auth-layout {
display: flex;
- height: 100vh;
+ min-height: 100vh;
& > * {
flex: 1;
@@ -21,7 +25,12 @@
.banner {
display: block;
width: 100%;
- height: 100%;
+ min-height: 100%;
background-color: aqua;
+ background-size: cover;
+ }
+
+ .form {
+ padding: 4rem 1rem;
}
}