import React from 'react';
import { Divider, Flex, Stack, Text } from '@chakra-ui/react';
import InputField from '../InputField';
import { SwitchInputType } from '../../constants';
const Features = ({ variables, setVariables }: any) => {
return (
{' '}
Disable Features
Disable Login Page:
Disable Email Verification:
Disable Magic Login Link:
Disable Basic Authentication:
Disable Sign Up:
Disable Strong Password:
Disable Multi Factor Authentication (MFA):
Note: Enabling this will ignore Enforcing MFA shown below and will
also ignore the user MFA setting.
Enable Features
Enforce Multi Factor Authentication (MFA):
Note: If you disable enforcing after it was enabled, it will still
keep MFA enabled for older users.
Cookie Security Features
Use Secure App Cookie:
Note: If you set this to insecure, it will set{' '}
sameSite
property of cookie to lax
mode
Use Secure Admin Cookie:
);
};
export default Features;