Add styling to GoToPaypal page

This commit is contained in:
Berkeley Martinez
2015-10-15 23:06:16 -07:00
parent defd0561f1
commit 78ba6edf34

View File

@ -1,20 +1,21 @@
import React, { PropTypes } from 'react'; import React, { PropTypes } from 'react';
import { Col, Panel, Row } from 'react-bootstrap'; import { Button, Col, Panel, Row } from 'react-bootstrap';
import { contain } from 'thundercats-react'; import { contain } from 'thundercats-react';
export default contain( export default contain(
{ {
store: 'JobsStore', store: 'JobsStore',
actions: 'JobActions', actions: 'JobActions',
map({ job: { id } = {} }) { map({ job: { id, isHighlighted } = {} }) {
return { id }; return { id, isHighlighted };
} }
}, },
React.createClass({ React.createClass({
displayName: 'GoToPayPal', displayName: 'GoToPayPal',
propTypes: { propTypes: {
id: PropTypes.string id: PropTypes.string,
isHighlighted: PropTypes.bool
}, },
render() { render() {
@ -23,12 +24,29 @@ export default contain(
<div> <div>
<Row> <Row>
<Col <Col
md={ 6 } md={ 10 }
mdOffset={ 3 } mdOffset={ 1 }
sm={ 8 } sm={ 8 }
smOffset={ 2 } smOffset={ 2 }
xs={ 12 }> xs={ 12 }>
<Panel> <Panel>
<Row>
<Col
md={ 6 }
mdOffset={ 3 }>
<h2 className='text-center'>
One more step
</h2>
<div className='spacer' />
You're Awesome! just one more step to go.
Clicking on the link below will redirect to paypal.
</Col>
</Row>
<div className='spacer' />
<Row>
<Col
md={ 6 }
mdOffset={ 3 }>
<form <form
action='https://www.sandbox.paypal.com/cgi-bin/webscr' action='https://www.sandbox.paypal.com/cgi-bin/webscr'
method='post' method='post'
@ -41,26 +59,30 @@ export default contain(
name='hosted_button_id' name='hosted_button_id'
type='hidden' type='hidden'
value='ZVU498PLMPHKU' /> value='ZVU498PLMPHKU' />
<input
alt='PayPal - The safer, easier way to pay online!'
border='0'
name='submit'
src={
'https://www.sandbox.paypal.com/' +
'en_US/i/btn/btn_buynowCC_LG.gif'
}
type='image' />
<input <input
name='custom' name='custom'
type='hidden' type='hidden'
value={ '' + id } /> value={ '' + id } />
<Button
block={ true }
bsSize='size'
className='signup-btn'
type='submit'>
<i className='fa fa-paypal' />
Continue to PayPal
</Button>
<div className='spacer' />
<img <img
alt='' alt='An array of credit cards'
border='0' border='0'
height='1' src='http://i.imgur.com/Q2SdSZG.png'
src='https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif' style={{
width='1' /> width: '100%'
}} />
</form> </form>
</Col>
</Row>
<div className='spacer' />
</Panel> </Panel>
</Col> </Col>
</Row> </Row>