2021-08-04 06:48:57 +00:00
|
|
|
import React, { Fragment } from 'react';
|
|
|
|
import { AuthorizerResetPassword } from '@authorizerdev/authorizer-react';
|
|
|
|
|
|
|
|
export default function ResetPassword() {
|
2021-12-28 22:46:31 +00:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<h1 style={{ textAlign: 'center' }}>Reset Password</h1>
|
|
|
|
<br />
|
|
|
|
<AuthorizerResetPassword />
|
|
|
|
</Fragment>
|
|
|
|
);
|
2021-08-04 06:48:57 +00:00
|
|
|
}
|