+

+
Welcome back
+
Please enter your detail
+
+
+ );
+};
+
+export default RegistrationPage;
diff --git a/src/pages/RegistrationPage.module.css b/src/pages/RegistrationPage.module.css
new file mode 100644
index 00000000..0da67478
--- /dev/null
+++ b/src/pages/RegistrationPage.module.css
@@ -0,0 +1,120 @@
+.digitalScreenWithEnvironmenIcon {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 773px;
+ height: 1024px;
+ object-fit: cover;
+}
+.pleaseEnterYour,
+.welcomeBack {
+ position: absolute;
+ top: 209px;
+ left: 929px;
+}
+.pleaseEnterYour {
+ top: 284px;
+ left: 1011px;
+ font-size: var(--font-size-base);
+}
+.signChild,
+.signItem {
+ position: absolute;
+ top: 30px;
+ left: 10px;
+ border-radius: var(--br-md);
+ background-color: var(--color-gainsboro);
+ width: 390px;
+ height: 54px;
+}
+.signItem {
+ top: 154px;
+}
+.email,
+.password {
+ position: absolute;
+ top: 0;
+ left: 10px;
+ font-size: var(--font-size-base);
+ font-family: var(--font-calibri);
+ color: var(--color-white);
+ text-align: center;
+}
+.password {
+ top: 120px;
+}
+.signInner {
+ position: absolute;
+ top: 241px;
+ left: 0;
+ border-radius: 50px;
+ background-color: var(--color-gainsboro);
+ width: 19px;
+ height: 19px;
+}
+.rememberMe {
+ top: 242px;
+ left: 26px;
+ font-size: var(--font-size-sm);
+}
+.dontHaveAn,
+.forgotPassword,
+.rememberMe {
+ position: absolute;
+ font-family: var(--font-calibri);
+ color: var(--color-white);
+ text-align: center;
+}
+.dontHaveAn {
+ top: 397px;
+ left: 72px;
+ font-size: var(--font-size-base);
+ cursor: pointer;
+}
+.forgotPassword {
+ top: 242px;
+ left: 298px;
+ font-size: var(--font-size-sm);
+}
+.rectangleDiv {
+ top: 304px;
+ left: 7px;
+ border-radius: 30px;
+ background-color: #14ff00;
+ border: 1px solid var(--color-black);
+ box-sizing: border-box;
+ width: 390px;
+ height: 58px;
+}
+.rectangleDiv,
+.sign,
+.signIn {
+ position: absolute;
+}
+.signIn {
+ top: 322px;
+ left: 166px;
+ font-size: var(--font-size-base);
+ font-family: var(--font-calibri);
+ color: var(--color-black);
+ text-align: center;
+}
+.sign {
+ top: 373px;
+ left: 919px;
+ width: 400px;
+ height: 421px;
+}
+.registrationPage {
+ position: relative;
+ background-color: #265518;
+ border: 2px solid var(--color-black);
+ box-sizing: border-box;
+ width: 100%;
+ height: 1024px;
+ overflow: hidden;
+ text-align: center;
+ font-size: 60px;
+ color: var(--color-white);
+ font-family: var(--font-calibri);
+}
diff --git a/src/reportWebVitals.js b/src/reportWebVitals.js
new file mode 100644
index 00000000..5fa3583b
--- /dev/null
+++ b/src/reportWebVitals.js
@@ -0,0 +1,15 @@
+import { ReportHandler } from "web-vitals";
+
+const reportWebVitals = (onPerfEntry?: ReportHandler) => {
+ if (onPerfEntry && onPerfEntry instanceof Function) {
+ import("web-vitals").then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
+ getCLS(onPerfEntry);
+ getFID(onPerfEntry);
+ getFCP(onPerfEntry);
+ getLCP(onPerfEntry);
+ getTTFB(onPerfEntry);
+ });
+ }
+};
+
+export default reportWebVitals;