diff --git a/Gruntfile.js b/Gruntfile.js index 1db667f99..b007c8083 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -69,7 +69,7 @@ module.exports = function(grunt) { tasks: ['concat:css'] }, sass: { - files: ['src/sass/*.scss'], + files: ['src/sass/**/*.scss'], tasks: ['sass', 'concat:css'] }, main: { diff --git a/public/views/includes/terms.html b/public/views/includes/terms.html index c66f1f02f..3d17e514c 100644 --- a/public/views/includes/terms.html +++ b/public/views/includes/terms.html @@ -1,14 +1,12 @@ - +

+ The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. +

+

+ While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. +

+

+ IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. +

+

+ To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time. +

diff --git a/public/views/onboarding/terms.html b/public/views/onboarding/terms.html index a69ffa564..ccea31db9 100644 --- a/public/views/onboarding/terms.html +++ b/public/views/onboarding/terms.html @@ -1,14 +1,14 @@ - - + + Terms of Use -

+
diff --git a/src/js/routes.js b/src/js/routes.js index 44c63ff8e..07fe1c6ee 100644 --- a/src/js/routes.js +++ b/src/js/routes.js @@ -30,7 +30,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr $ionicConfigProvider.navBar.positionSecondaryButtons('right'); // NAV BACK-BUTTON TEXT/ICON - $ionicConfigProvider.backButton.icon('ion-chevron-left'); + $ionicConfigProvider.backButton.icon('ion-arrow-left-c').text(''); $ionicConfigProvider.backButton.previousTitleText(false); $logProvider.debugEnabled(true); diff --git a/src/sass/general/layout.scss b/src/sass/general/layout.scss new file mode 100644 index 000000000..e69de29bb diff --git a/src/sass/main.scss b/src/sass/main.scss index 0c45813f6..bfbbb019d 100644 --- a/src/sass/main.scss +++ b/src/sass/main.scss @@ -991,3 +991,6 @@ input[type=number] { white-space: initial; } } + +@import 'general/layout'; +@import 'views/onboarding/terms-of-use'; diff --git a/src/sass/views/onboarding/terms-of-use.scss b/src/sass/views/onboarding/terms-of-use.scss new file mode 100644 index 000000000..981408c7d --- /dev/null +++ b/src/sass/views/onboarding/terms-of-use.scss @@ -0,0 +1,17 @@ +#terms-of-use{ + ion-header-bar{ + background: #fff; + box-shadow: 0px 3px 3px 0px rgba(50, 50, 50, 0.2); + } + ion-content{ + margin-top:1.5rem; + color: rgba(86, 86, 86, 0.77); + p{ + padding:0 2.5%; + margin:2rem auto; + &:first-child{ + margin-top:0; + } + } + } +} \ No newline at end of file