'use strict'; import React from 'react'; import Form from './form'; import Property from './property'; import InputTextAreaToggable from './input_textarea_toggable'; import InputCheckbox from './input_checkbox'; import Alert from 'react-bootstrap/lib/Alert'; import AscribeSpinner from '../ascribe_spinner'; import ApiUrls from '../../constants/api_urls'; import { getLangText } from '../../utils/lang_utils.js'; import requests from '../../utils/requests'; let PieceSubmitToPrizeForm = React.createClass({ propTypes: { piece: React.PropTypes.object, handleSuccess: React.PropTypes.func }, render() { return (

} spinner={

}> {' ' + getLangText('I agree to the Terms of Service the art price') + ' '} ( {getLangText('read')} )

{getLangText('Are you sure you want to submit to the prize?')}

{getLangText('This is an irrevocable action%s', '.')}

); } }); export default PieceSubmitToPrizeForm;