Add styling to job completed view
This commit is contained in:
@ -1,18 +1,41 @@
|
|||||||
import React, { PropTypes } from 'react';
|
import React from 'react';
|
||||||
import { Well, Row } from 'react-bootstrap';
|
import { LinkContainer } from 'react-router-bootstrap';
|
||||||
|
import { Button, Panel, Col, Row } from 'react-bootstrap';
|
||||||
|
|
||||||
export default React.createClass({
|
export default React.createClass({
|
||||||
displayName: 'NewJobCompleted',
|
displayName: 'NewJobCompleted',
|
||||||
|
|
||||||
propTypes: {
|
propTypes: {
|
||||||
},
|
},
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
<Panel>
|
||||||
<Row>
|
<Row>
|
||||||
<Well>
|
<h1 className='text-center'>
|
||||||
Congrats!
|
Job under review
|
||||||
</Well>
|
</h1>
|
||||||
</Row>
|
</Row>
|
||||||
|
<Row>
|
||||||
|
<Col
|
||||||
|
md={ 6 }
|
||||||
|
mdOffset={ 3 }>
|
||||||
|
Congrats! Your job has been posted and is under review.
|
||||||
|
Once we review you job post we will publish it and you will receive
|
||||||
|
an email from us with a link to the listing.
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
<div className='spacer' />
|
||||||
|
<LinkContainer to={ '/jobs' }>
|
||||||
|
<Button
|
||||||
|
block={ true }
|
||||||
|
bsSize='large'
|
||||||
|
bsStyle='primary'>
|
||||||
|
Go to the job board
|
||||||
|
</Button>
|
||||||
|
</LinkContainer>
|
||||||
|
</Panel>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -99,6 +99,7 @@
|
|||||||
"react-bootstrap": "~0.23.7",
|
"react-bootstrap": "~0.23.7",
|
||||||
"react-motion": "~0.1.0",
|
"react-motion": "~0.1.0",
|
||||||
"react-router": "https://github.com/BerkeleyTrue/react-router.git#freecodecamp",
|
"react-router": "https://github.com/BerkeleyTrue/react-router.git#freecodecamp",
|
||||||
|
"react-router-bootstrap": "^0.19.2",
|
||||||
"react-vimeo": "^0.0.3",
|
"react-vimeo": "^0.0.3",
|
||||||
"request": "~2.53.0",
|
"request": "~2.53.0",
|
||||||
"rev-del": "^1.0.5",
|
"rev-del": "^1.0.5",
|
||||||
|
Reference in New Issue
Block a user