generated from ita-social-projects/DevTemplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a page with info about sending email activation
- Loading branch information
Showing
4 changed files
with
106 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import styles from "./SignUpModalPage.module.css"; | ||
import DotDecorComponent from "../UI/dotDecor/DotDecor"; | ||
|
||
export function SignUpModalPage() { | ||
return ( | ||
<div className={styles["modal"]}> | ||
<div className={styles["modal__body"]}> | ||
<DotDecorComponent position={"up-right"} /> | ||
<div className={styles["container-modal"]}> | ||
<div className={styles["modal__header"]}>Реєстрація майже завершена</div> | ||
<div className={styles["modal__footer"]}> | ||
<p> | ||
На зазначену Вами електронну пошту відправлено листа. <br /> | ||
Будь ласка перейдіть за посиланням з листа для підтвердження вказаної електронної адреси. <br /> | ||
На цьому реєстрацію завершено. <br /> | ||
<div className={styles["resend-line"]}> | ||
<a href="/sign-up/resend-activation" className={styles["resend-line__link"]}> | ||
Не отримали лист? | ||
</a> | ||
</div> | ||
</p> | ||
</div> | ||
</div> | ||
<DotDecorComponent position={"down-left"} /> | ||
</div> | ||
</div> | ||
); | ||
} |
73 changes: 73 additions & 0 deletions
73
FrontEnd/src/components/SignUp/pages/SignUpModalPage.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
.modal { | ||
width: 1512px; | ||
border-radius: 8px; | ||
background: var(--wf-base-white, #fff); | ||
} | ||
|
||
.modal__body { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-around; | ||
height: 725px; | ||
background: var(--primary-green-20, #f1fff7); | ||
} | ||
|
||
.container-modal { | ||
width: 600px; | ||
height: 225px; | ||
position: absolute; | ||
z-index: 2; | ||
} | ||
|
||
.modal__header { | ||
display: flex; | ||
padding: 18px 24px; | ||
align-items: flex-start; | ||
gap: 36px; | ||
align-self: stretch; | ||
background: var(--main-white, #fff); | ||
|
||
/* border & divider/divider ↓ */ | ||
box-shadow: 0px -1px 0px 0px #f0f0f0 inset; | ||
color: var(--character-title-85, rgba(0, 0, 0, 0.85)); | ||
font-feature-settings: "calt" off; | ||
|
||
/* Text/Body/16-Semi bold */ | ||
font-family: Inter, sans-serif; | ||
font-size: 16px; | ||
font-style: normal; | ||
font-weight: 600; | ||
line-height: 20px; | ||
/* 125% */ | ||
letter-spacing: -0.16px; | ||
} | ||
|
||
.modal__footer { | ||
display: flex; | ||
padding: 16px 16px; | ||
justify-content: flex-end; | ||
align-items: center; | ||
gap: 8px; | ||
align-self: stretch; | ||
background: var(--main-white, #fff); | ||
|
||
/* border & divider/divider ↑ */ | ||
box-shadow: 0px 1px 0px 0px #f0f0f0 inset; | ||
} | ||
|
||
.resend-line { | ||
margin-top: 20px; | ||
} | ||
|
||
.resend-line__link { | ||
color: var(--accent-accelerate-1500, #00a3cf); | ||
font-feature-settings: "calt" off; | ||
|
||
/* Text/Body/14-Regular */ | ||
font-family: Inter, sans-serif; | ||
font-size: 14px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 20px; | ||
letter-spacing: -0.14px; | ||
} |