2023-02-23 11:51:35 -05:00
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import { Col, Row, Alert } from 'react-bootstrap'
|
|
|
|
|
|
|
|
function Canceled() {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="container">
|
|
|
|
<Row>
|
|
|
|
<Col md={8} mdOffset={2}>
|
|
|
|
<div className="card">
|
|
|
|
<div className="page-header">
|
|
|
|
<h2>{t('subscription_canceled')}</h2>
|
2023-02-27 09:15:10 -05:00
|
|
|
</div>
|
|
|
|
<Alert bsStyle="info">
|
2023-02-23 11:51:35 -05:00
|
|
|
<p>
|
2023-02-27 09:15:10 -05:00
|
|
|
{t('to_modify_your_subscription_go_to')}
|
|
|
|
<a href="/user/subscription" rel="noopener noreferrer">
|
|
|
|
{t('manage_subscription')}.
|
2023-02-23 11:51:35 -05:00
|
|
|
</a>
|
|
|
|
</p>
|
2023-02-27 09:15:10 -05:00
|
|
|
</Alert>
|
|
|
|
<p>
|
|
|
|
<a
|
|
|
|
className="btn btn-primary"
|
|
|
|
href="/project"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
|
|
|
< {t('back_to_your_projects')}
|
|
|
|
</a>
|
|
|
|
</p>
|
2023-02-23 11:51:35 -05:00
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Canceled
|