From c3776175a33098e8524cf6d6e2070b1dea469d6e Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Thu, 15 Oct 2015 23:33:26 -0700 Subject: [PATCH] Add styling to job completed view --- .../Jobs/components/NewJobCompleted.jsx | 37 +++++++++++++++---- package.json | 1 + 2 files changed, 31 insertions(+), 7 deletions(-) diff --git a/common/app/routes/Jobs/components/NewJobCompleted.jsx b/common/app/routes/Jobs/components/NewJobCompleted.jsx index 1a78e87eaa..5d9e5785c1 100644 --- a/common/app/routes/Jobs/components/NewJobCompleted.jsx +++ b/common/app/routes/Jobs/components/NewJobCompleted.jsx @@ -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 (
- - - Congrats! - - + + +

+ Job under review +

+
+ + + 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. + + +
+ + + +
); } diff --git a/package.json b/package.json index 1c6f77559a..c4777546c9 100644 --- a/package.json +++ b/package.json @@ -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",