diff --git a/js/src/modals/SMSVerification/GatherData/gatherData.css b/js/src/modals/SMSVerification/GatherData/gatherData.css index 0c501c223..8d3fd6c77 100644 --- a/js/src/modals/SMSVerification/GatherData/gatherData.css +++ b/js/src/modals/SMSVerification/GatherData/gatherData.css @@ -33,3 +33,15 @@ margin-bottom: 0; margin-left: .5em; } + +.terms { + line-height: 1.3; + opacity: .7; +} +.terms ul { + padding-left: 1.5em; +} +.terms li { + margin-top: .2em; + margin-bottom: .2em; +} diff --git a/js/src/modals/SMSVerification/GatherData/gatherData.js b/js/src/modals/SMSVerification/GatherData/gatherData.js index 035874b62..24c32aa3a 100644 --- a/js/src/modals/SMSVerification/GatherData/gatherData.js +++ b/js/src/modals/SMSVerification/GatherData/gatherData.js @@ -27,6 +27,7 @@ import { Form, Input } from '../../../ui'; import checkIfVerified from '../check-if-verified'; import checkIfRequested from '../check-if-requested'; +import terms from '../terms-of-service'; import styles from './gatherData.css'; export default class GatherData extends Component { @@ -85,10 +86,11 @@ export default class GatherData extends Component { /> +
{ terms }
); } diff --git a/js/src/modals/SMSVerification/terms-of-service.js b/js/src/modals/SMSVerification/terms-of-service.js new file mode 100644 index 000000000..f61b3c97d --- /dev/null +++ b/js/src/modals/SMSVerification/terms-of-service.js @@ -0,0 +1,27 @@ +// Copyright 2015, 2016 Ethcore (UK) Ltd. +// This file is part of Parity. + +// Parity is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Parity is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Parity. If not, see . + +import React from 'react'; + +export default ( + +);