Add styling to job completed view

This commit is contained in:
Berkeley Martinez
2015-10-15 23:33:26 -07:00
parent 78ba6edf34
commit c3776175a3
2 changed files with 31 additions and 7 deletions

View File

@ -1,18 +1,41 @@
import React, { PropTypes } from 'react';
import { Well, Row } from 'react-bootstrap';
import React from 'react';
import { LinkContainer } from 'react-router-bootstrap';
import { Button, Panel, Col, Row } from 'react-bootstrap';
export default React.createClass({
displayName: 'NewJobCompleted',
propTypes: {
},
render() {
return (
<div>
<Panel>
<Row>
<Well>
Congrats!
</Well>
<h1 className='text-center'>
Job under review
</h1>
</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>
);
}

View File

@ -99,6 +99,7 @@
"react-bootstrap": "~0.23.7",
"react-motion": "~0.1.0",
"react-router": "https://github.com/BerkeleyTrue/react-router.git#freecodecamp",
"react-router-bootstrap": "^0.19.2",
"react-vimeo": "^0.0.3",
"request": "~2.53.0",
"rev-del": "^1.0.5",