Files
freeCodeCamp/common/app/routes/Jobs/components/NewJobCompleted.jsx

40 lines
1006 B
JavaScript
Raw Normal View History

2015-10-15 23:33:26 -07:00
import React from 'react';
import { LinkContainer } from 'react-router-bootstrap';
import { Button, Panel, Col, Row } from 'react-bootstrap';
export default React.createClass({
displayName: 'NewJobCompleted',
2015-10-15 23:33:26 -07:00
render() {
return (
2015-10-20 15:01:05 -07:00
<div className='text-center'>
2015-10-15 23:33:26 -07:00
<Panel>
<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
Well review your listing and email you when its 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>
</Panel>
</div>
);
}
});