- Password
-
- setForm({ ...form, password: event.target.value })}
- sx={{
- backgroundColor: theme.palette.general.primary,
- color: theme.palette.text.primary,
- flex: 1,
- '&:disabled': {
- opacity: 0.5,
- backgroundColor: theme.palette.general.primary,
- },
- }}
- />
- setShowPassword(!showPassword)}
- sx={{
- color: theme.palette.text.primary,
- marginLeft: 1,
- '&:disabled': {
- opacity: 0.5,
- },
- }}
- >
- {showPassword ? : }
-
-
-
-
- Confirm Password
-
- setConfirmPassword(event.target.value)}
- sx={{
- backgroundColor: theme.palette.general.primary,
- color: theme.palette.text.primary,
- flex: 1,
- '&:disabled': {
- opacity: 0.5,
- backgroundColor: theme.palette.general.primary,
- },
- }}
- />
- setShowConfirmPassword(!showConfirmPassword)}
- sx={{
- color: theme.palette.text.primary,
- marginLeft: 1,
- '&:disabled': {
- opacity: 0.5,
- },
- }}
- >
- {showConfirmPassword ? : }
-
-
-
-