-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
109 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<script setup lang="ts"> | ||
import HeaderDefault from '@/components/HeaderDefault.vue' | ||
</script> | ||
|
||
<template> | ||
<HeaderDefault /> | ||
<v-container class="privacy-view"> | ||
<v-row> | ||
<v-col cols="12"> | ||
<h2 class="title">Privacy Policy</h2> | ||
<p class="description"> | ||
See | ||
<a href="https://www.bihealth.org/en/privacy" target="_blank"> | ||
privacy policy of the Berlin Institute of Health | ||
</a> | ||
</p> | ||
</v-col> | ||
</v-row> | ||
</v-container> | ||
</template> | ||
|
||
<style scoped> | ||
.privacy-view { | ||
padding: 40px; | ||
} | ||
.title { | ||
font-size: 24px; | ||
font-weight: bold; | ||
margin-bottom: 20px; | ||
} | ||
p { | ||
font-size: 16px; | ||
margin-bottom: 20px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<script setup lang="ts"> | ||
import HeaderDefault from '@/components/HeaderDefault.vue' | ||
</script> | ||
|
||
<template> | ||
<HeaderDefault /> | ||
<v-container class="terms-view"> | ||
<v-row> | ||
<v-col cols="12"> | ||
<h2 class="title">Terms of Use</h2> | ||
<p class="description">REEV is for research use only software</p> | ||
<p class="description"> | ||
The software is provided "as is," without warranty of any kind, express or implied, | ||
including but not limited to the warranties of merchantability, fitness for a particular | ||
purpose, and noninfringement. In no event shall the authors or copyright holders be 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 or the use or other | ||
dealings in the software. | ||
</p> | ||
</v-col> | ||
</v-row> | ||
</v-container> | ||
</template> | ||
|
||
<style scoped> | ||
.terms-view { | ||
padding: 40px; | ||
} | ||
.title { | ||
font-size: 24px; | ||
font-weight: bold; | ||
margin-bottom: 20px; | ||
} | ||
p { | ||
font-size: 16px; | ||
margin-bottom: 20px; | ||
} | ||
</style> |