2015-10-15 23:33:26 -07:00
|
|
|
|
import React from 'react';
|
|
|
|
|
import { LinkContainer } from 'react-router-bootstrap';
|
2016-01-15 02:46:25 -08:00
|
|
|
|
import { Button, Col, Row } from 'react-bootstrap';
|
2015-10-13 23:05:31 -07:00
|
|
|
|
|
2016-02-05 20:48:59 -08:00
|
|
|
|
export default class extends React.createClass {
|
|
|
|
|
static displayName = 'NewJobCompleted';
|
2015-10-15 23:33:26 -07:00
|
|
|
|
|
2016-03-05 21:06:04 -08:00
|
|
|
|
shouldComponentUpdate() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-13 23:05:31 -07:00
|
|
|
|
render() {
|
|
|
|
|
return (
|
2015-10-20 15:01:05 -07:00
|
|
|
|
<div className='text-center'>
|
2016-01-15 02:46:25 -08:00
|
|
|
|
<div>
|
2015-10-15 23:33:26 -07:00
|
|
|
|
<Row>
|
2015-10-20 15:01:05 -07:00
|
|
|
|
<h1>
|
|
|
|
|
Your Position has Been Submitted
|
2015-10-15 23:33:26 -07:00
|
|
|
|
</h1>
|
|
|
|
|
</Row>
|
|
|
|
|
<Row>
|
|
|
|
|
<Col
|
|
|
|
|
md={ 6 }
|
|
|
|
|
mdOffset={ 3 }>
|
2015-10-20 15:01:05 -07:00
|
|
|
|
We’ll review your listing and email you when it’s live.
|
|
|
|
|
<br />
|
|
|
|
|
Thank you for listing this job with Free Code Camp.
|
2015-10-15 23:33:26 -07:00
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
<div className='spacer' />
|
|
|
|
|
<LinkContainer to={ '/jobs' }>
|
|
|
|
|
<Button
|
|
|
|
|
block={ true }
|
|
|
|
|
bsSize='large'
|
|
|
|
|
bsStyle='primary'>
|
|
|
|
|
Go to the job board
|
|
|
|
|
</Button>
|
|
|
|
|
</LinkContainer>
|
2016-01-15 02:46:25 -08:00
|
|
|
|
</div>
|
2015-10-13 23:05:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
2016-02-05 20:48:59 -08:00
|
|
|
|
}
|