Skip to content

Commit 75d2804

Browse files
committed
add sign up disclaimer
1 parent 2fffade commit 75d2804

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

components/AuthForm/AuthForm.module.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
@import 'vars.scss';
22

3+
.disclaimer {
4+
margin-bottom: spacing(3);
5+
border: 1px solid $color-red;
6+
padding: spacing(2);
7+
text-align: center;
8+
border-radius: $border-radius-small;
9+
span {
10+
color: $color-red;
11+
}
12+
}
13+
314
.container {
415
background: $color-white;
516
padding: spacing(2);

components/AuthForm/parts/SignUpForm.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ const Component = ({ onSubmit, children, handleSubmit, title }) => {
1818

1919
return (
2020
<form className={styles.container}>
21+
<div className={styles.disclaimer}>
22+
<span>🤞 We do not share any of your personal information with third parties.</span>
23+
</div>
2124
{title && <h4>{title}</h4>}
2225
{/* {children}
2326
<Button fluid baseType="submit" onClick={handleSubmit(onSubmit)}>

0 commit comments

Comments
 (0)