Only doing password and email currently

This commit is contained in:
Dane Everitt 2019-06-24 21:45:43 -07:00
parent da24f66563
commit cbd050edda
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -9,13 +9,9 @@ export default () => {
<ContentBox className={'flex-1 mr-4'} title={'Update Password'} showFlashes={'account:password'}>
<UpdatePasswordForm/>
</ContentBox>
<div className={'flex-1 ml-4'}>
<ContentBox title={'Update Email Address'} showFlashes={'account:email'}>
<UpdateEmailAddressForm/>
</ContentBox>
<ContentBox title={'Update Identity'} className={'mt-8'}>
</ContentBox>
</div>
<ContentBox className={'flex-1 ml-4'} title={'Update Email Address'} showFlashes={'account:email'}>
<UpdateEmailAddressForm/>
</ContentBox>
</div>
);
};