mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +02:00
* feat: change layout * fix: standalone banner styling * fix: change styling for banner * fix: login page * fix: standalone pages * fix: page tweaks * fix: center text * refactor: new user page * refactor: remove uneccesary markup * refactor: remove secondary actions from hosted * fix: remove authdetails blob * refactor: remove unused import * fix: move overflow * fix: add breakpoint to forgotten password
30 lines
946 B
TypeScript
30 lines
946 B
TypeScript
import { Typography } from '@material-ui/core';
|
|
import { Link } from 'react-router-dom';
|
|
import { useStyles } from './SecondaryLoginActions.styles';
|
|
|
|
const SecondaryLoginActions = () => {
|
|
const styles = useStyles();
|
|
return (
|
|
<div className={styles.container}>
|
|
<Link to="/forgotten-password" className={styles.link}>
|
|
<Typography variant="body2" className={styles.text}>
|
|
Forgot password?
|
|
</Typography>
|
|
</Link>
|
|
<Typography variant="body2">
|
|
Don't have an account?{' '}
|
|
<a
|
|
href="https://www.getunleash.io/plans"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className={styles.link}
|
|
>
|
|
Sign up
|
|
</a>
|
|
</Typography>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SecondaryLoginActions;
|