in src/HomePage/index.tsx [49:73]
render() {
let cssClass = "btn btn-primary btn-lg " + Config.colorclass;
if (this.state.isAuthenticated) {
return (
<div className="jumbotron">
<h1 className="display-4">Congratulations!</h1>
<p className="lead">You have succesfully logged in</p>
<p className="lead">
<a className={cssClass} href="https://github.com/awslabs/aws-amplify-identity-broker" role="button">See the project on GitHub</a>
</p>
</div>
);
}
else {
return (
<div className="jumbotron">
<h1 className="display-4">Amplify Identity Broker Sample Client</h1>
<p className="lead">This is a sample client for the AWS Amplify Identity Broker Project</p>
<p className="lead">
<a className={cssClass} href="https://github.com/awslabs/aws-amplify-identity-broker" role="button">See the project on GitHub</a>
</p>
</div>
);
}
}