1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/user/authentication-custom-component.jsx

28 lines
782 B
React
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import { CardActions, Button } from '@material-ui/core';
class AuthenticationCustomComponent extends React.Component {
static propTypes = {
authDetails: PropTypes.object.isRequired,
};
render() {
const authDetails = this.props.authDetails;
return (
<div>
<p>{authDetails.message}</p>
<CardActions style={{ textAlign: 'center' }}>
<a href={authDetails.path}>
<Button raised colored>
2018-01-17 09:45:38 +01:00
Sign In
</Button>
</a>
</CardActions>
</div>
);
}
}
export default AuthenticationCustomComponent;