Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions resources/js/profile/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Container from "@material-ui/core/Container";
import CssBaseline from "@material-ui/core/CssBaseline";
import Checkbox from "@material-ui/core/Checkbox";
import DeleteIcon from '@material-ui/icons/Delete';
import InfoOutlinedIcon from '@material-ui/icons/InfoOutlined';
import Grid from "@material-ui/core/Grid";
import MenuItem from "@material-ui/core/MenuItem";
import TextField from "@material-ui/core/TextField";
Expand Down Expand Up @@ -759,6 +760,18 @@ const ProfilePage = ({
formik={formik}
passwordPolicy={passwordPolicy}/>

<Grid item>
<div className={styles.privacy_note}>
<InfoOutlinedIcon className={styles.privacy_note_icon}/>
<Typography variant="body2" className={styles.privacy_note_text}>
These settings apply to your account profile across the entire
platform (chat, directory, and public profile contexts for any
show or event) — they are not per-show. They do not control your
speaker profile, if you have one: speaker profile data is public
separately, except for your email and phone number.
</Typography>
</div>
</Grid>
<Grid item spacing={2} container direction="row">
<Grid item xs={6}>
<FormControlLabel
Expand Down
25 changes: 25 additions & 0 deletions resources/js/profile/profile.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,30 @@
font-size: 0.75rem;
margin: 4px 0 4px 14px;
}

.privacy_note {
display: flex;
align-items: flex-start;
color: $text-color-dark;
background-color: #e8f1fb;
border: solid 1px #c3dbf2;
border-radius: 4px;
padding: 10px 12px;
margin: 8px 0 12px;

.privacy_note_icon {
font-size: 1.1rem;
margin-right: 8px;
margin-top: 2px;
flex-shrink: 0;
color: $base-color-dark;
}

.privacy_note_text {
flex: 1;
min-width: 0;
margin: 0;
}
}
}
}
Loading