'use strict'; import React from 'react'; import ApiUrls from '../../constants/api_urls'; import FormMixin from '../../mixins/form_mixin'; import InputText from './input_text'; import InputTextArea from './input_textarea'; import ButtonSubmitOrClose from '../ascribe_buttons/button_submit_close'; let TransferForm = React.createClass({ mixins: [FormMixin], url() { return ApiUrls.ownership_transfers; }, getFormData() { return { bitcoin_id: this.getBitcoinIds().join(), transferee: this.refs.transferee.state.value, transfer_message: this.refs.transfer_message.state.value, password: this.refs.password.state.value }; }, renderForm() { let title = this.getTitlesString().join(''); let username = this.props.currentUser.username; let message = `Hi, I transfer ownership of : ${title}to you. Truly yours, ${username}`; return (
Make sure that display instructions and technology details are correct. They cannot be edited after the transfer.
); } }); export default TransferForm;