1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-23 01:39:36 +01:00

advance create contract form

This commit is contained in:
Tim Daubenschütz 2015-09-01 16:57:12 +02:00
parent b4abe7a245
commit 9d7b5cbe2a

View File

@ -4,6 +4,7 @@ import React from 'react';
import Form from '../ascribe_forms/form';
import Property from '../ascribe_forms/property';
import InputCheckbox from '../ascribe_forms/input_checkbox';
import ReactS3FineUploader from '../ascribe_uploader/react_s3_fine_uploader';
@ -94,6 +95,19 @@ let CreateContractForm = React.createClass({
placeholder="(e.g. Loan agreement #1)"
required/>
</Property>
<Property
name="public"
className="ascribe-settings-property-collapsible-toggle"
style={{paddingBottom: 0}}>
<InputCheckbox>
<span>
{' ' + getLangText('I agree to the Terms of Service') + ' '}
(<a href="https://www.ascribe.io/terms" target="_blank" style={{fontSize: '0.9em', color: 'rgba(0,0,0,0.7)'}}>
{getLangText('read')}
</a>)
</span>
</InputCheckbox>
</Property>
</Form>
);
}