Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Commit

Permalink
added terms of use and policies documents
Browse files Browse the repository at this point in the history
  • Loading branch information
denisgranha committed May 24, 2018
1 parent 9dc48da commit 15abb46
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 16 deletions.
Binary file added dapp/TermsofUseMultisig.pdf
Binary file not shown.
26 changes: 13 additions & 13 deletions dapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 20 additions & 3 deletions dapp/partials/modals/disclaimer.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<div class="modal-header">
<div class="bootstrap-dialog-header">
<div class="bootstrap-dialog-title">Important notice</div>
<div class="bootstrap-dialog-title">Terms of Use and Privacy Policy</div>
</div>
</div>
<div class="modal-body">
<p>
For using the application, you have to agree with our <a href="/TermsofUseMultisig.pdf" target="_blank" >Terms of Use</a> and <a href="https://gnosis.pm/assets/pdf/PrivacyPolicyGnosisLtd.pdf" target="_blank" >Privacy Policy.</a>
</p>
<p>
Don't use the wallet hosted at
<a href="https://wallet.gnosis.pm" class="prevent-focus" target="_blank">https://wallet.gnosis.pm</a> to sign transactions.
Expand All @@ -19,9 +22,23 @@
<p>
Use at your own risk.
</p>
<div class="checkbox">
<label>
<input type="checkbox" ng-model="termsOfUse">
I have read and understood the Terms of Use
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" ng-model="privacyPolicy">
I have read and understood the Privacy Policy
</label>
</div>


</div>
<div class="modal-footer">
<button type="button" ng-click="ok()" class="btn btn-default" id="terms-button" >
I confirm the terms and conditions
<button type="button" ng-click="ok()" class="btn btn-default" id="terms-button" ng-disabled="!termsOfUse || !privacyPolicy">
Continue
</button>
</div>

0 comments on commit 15abb46

Please sign in to comment.