diff --git a/js/components/whitelabel/prize/prize_app.js b/js/components/whitelabel/prize/prize_app.js
index 83dfbfdd..dc95f478 100644
--- a/js/components/whitelabel/prize/prize_app.js
+++ b/js/components/whitelabel/prize/prize_app.js
@@ -4,7 +4,7 @@ import React from 'react';
import Router from 'react-router';
import Hero from './components/prize_hero';
import Header from '../../header';
-// import Footer from '../../footer';
+import Footer from '../../footer';
import GlobalNotification from '../../global_notification';
let RouteHandler = Router.RouteHandler;
@@ -28,6 +28,7 @@ let PrizeApp = React.createClass({
+
);
}
diff --git a/js/components/whitelabel/wallet/components/cyland/ascribe_buttons/cyland_submit_button.js b/js/components/whitelabel/wallet/components/cyland/ascribe_buttons/cyland_submit_button.js
index 6e2246f8..a19a73c6 100644
--- a/js/components/whitelabel/wallet/components/cyland/ascribe_buttons/cyland_submit_button.js
+++ b/js/components/whitelabel/wallet/components/cyland/ascribe_buttons/cyland_submit_button.js
@@ -4,11 +4,11 @@ import React from 'react';
import classNames from 'classnames';
import ModalWrapper from '../../../../../ascribe_modal/modal_wrapper';
-import PieceSubmitToPrizeForm from '../../../../../ascribe_forms/form_submit_to_prize';
+import CylandPieceSubmitForm from '../ascribe_forms/cyland_form_submit';
import { getLangText } from '../../../../../../utils/lang_utils';
-let SubmitToPrizeButton = React.createClass({
+let CylandSubmitButton = React.createClass({
propTypes: {
className: React.PropTypes.string,
handleSuccess: React.PropTypes.func,
@@ -16,24 +16,12 @@ let SubmitToPrizeButton = React.createClass({
},
getSubmitButton() {
- if (this.props.piece.prize) {
- return (
-
- );
- }
- else {
- return (
-
- );
- }
+ return (
+
+ );
},
render() {
@@ -41,8 +29,8 @@ let SubmitToPrizeButton = React.createClass({
-
+
@@ -51,4 +39,4 @@ let SubmitToPrizeButton = React.createClass({
}
});
-export default SubmitToPrizeButton;
\ No newline at end of file
+export default CylandSubmitButton;
\ No newline at end of file
diff --git a/js/components/whitelabel/wallet/components/cyland/ascribe_forms/cyland_form_submit.js b/js/components/whitelabel/wallet/components/cyland/ascribe_forms/cyland_form_submit.js
new file mode 100644
index 00000000..bbc5f889
--- /dev/null
+++ b/js/components/whitelabel/wallet/components/cyland/ascribe_forms/cyland_form_submit.js
@@ -0,0 +1,89 @@
+'use strict';
+
+import React from 'react';
+
+import Form from '../../../../../ascribe_forms/form';
+import Property from '../../../../../ascribe_forms/property';
+import InputTextAreaToggable from '../../../../../ascribe_forms/input_textarea_toggable';
+import InputCheckbox from '../../../../../ascribe_forms/input_checkbox';
+
+import Alert from 'react-bootstrap/lib/Alert';
+
+import AppConstants from '../../../../../../constants/application_constants';
+import ApiUrls from '../../../../../../constants/api_urls';
+
+import { getLangText } from '../../../../../../utils/lang_utils.js';
+
+import requests from '../../../../../../utils/requests';
+
+let CylandPieceSubmitForm = React.createClass({
+ propTypes: {
+ piece: React.PropTypes.object,
+ handleSuccess: React.PropTypes.func
+ },
+
+ render() {
+ //return (
+ //
+ //);
+ return null;
+ }
+});
+
+
+export default CylandPieceSubmitForm;
diff --git a/js/components/whitelabel/wallet/wallet_app.js b/js/components/whitelabel/wallet/wallet_app.js
index 27657ff7..311efd5c 100644
--- a/js/components/whitelabel/wallet/wallet_app.js
+++ b/js/components/whitelabel/wallet/wallet_app.js
@@ -3,6 +3,8 @@
import React from 'react';
import Router from 'react-router';
import Header from '../../header';
+import Footer from '../../footer';
+
import GlobalNotification from '../../global_notification';
let RouteHandler = Router.RouteHandler;
@@ -15,6 +17,7 @@ let WalletApp = React.createClass({
+
);
}