import styles from '@system/forms/FormSettingsPrivacy.module.scss'; import * as React from 'react'; import * as Utilities from '@common/utilities'; import Button from '@system/Button'; import Checkbox from '@system/Checkbox'; import { FormHeading, FormSubHeading, FormParagraph, InputLabel } from '@system/typography/forms'; function FormSettingsPrivacy(props) { return (
Privacy When your account is public, your profile, TXT.DEV posts, and third-party application content can be viewed by anyone, regardless of whether they have an API account. You can modify some of these settings below. Our services do not track your IP address and do not use your IP address to determine your personal information.
E-mail Configure your e-mail privacy settings Your e-mail address is public. To toggle e-mail privacy, uncheck this box, otherwise others will be able to see your e-mail "team@internet.dev".
Personal Configure how much personal information you wish to share Your location is public. To toggle location privacy, uncheck this box. Your age is public. To toggle age privacy, uncheck this box. Your birthdate is public. To toggle birthdate privacy, uncheck this box.
Activity Configure how much activity you wish to share Your profile activity is public. To toggle the visibility of your activity, uncheck this box.
Content Configure your content settings here Your content is public and accessible to everyone by default. To make your content private by default, uncheck this box. This will prevent others from viewing your content unless you choose to make it public. Allow your content to be used to train our models, which makes our API better for you and everyone who uses it.
); } export default FormSettingsPrivacy;