-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a346315
commit 41b040a
Showing
7 changed files
with
8,462 additions
and
1 deletion.
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,68 @@ | ||
<template> | ||
<b-container fluid class="h-100 m-0 p-0 bg-content"> | ||
<div id="privacy-policy" class="p-5"> | ||
<h1>Privacy Policy</h1> | ||
<hr /> | ||
<!-- FIXME: update links for eduator version --> | ||
<p> | ||
This Privacy Policy explains how we collect, use, and share personal information when you | ||
visit our website, | ||
<a href="https://portofmars.asu.edu/">portofmars.asu.edu/ educator ??</a>. | ||
</p> | ||
<p> | ||
By using our website, you agree to the collection, use, and sharing of your personal | ||
information as described in this Privacy Policy. If you do not agree with our policies and | ||
practices, do not use our website. | ||
</p> | ||
|
||
<h4>Information We Collect</h4> | ||
<p></p> | ||
|
||
<h4>How We Use Your Information</h4> | ||
<p></p> | ||
|
||
<h4>Sharing Your Information</h4> | ||
<p></p> | ||
|
||
<h4>Your Rights</h4> | ||
<p></p> | ||
|
||
<h4>Data Retention</h4> | ||
<p></p> | ||
<h4>Changes to our Privacy Policy</h4> | ||
<p></p> | ||
<h4>Contact Us</h4> | ||
<p> | ||
If you have any questions or concerns about our Privacy Policy or the collection, use, or | ||
sharing of your personal information, please contact us at | ||
<a :href="`mailto:${$settings.CONTACT_EMAIL}`">{{ $settings.CONTACT_EMAIL }}</a | ||
>. | ||
</p> | ||
</div> | ||
<Footer></Footer> | ||
</b-container> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { Component, Inject, Vue, Provide } from "vue-property-decorator"; | ||
import { Client } from "colyseus.js"; | ||
export default class educatorPrivacy extends Vue {} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
#privacy-policy { | ||
max-width: 1200px; | ||
margin: auto; | ||
} | ||
h4, | ||
ul, | ||
p { | ||
color: #fff; | ||
} | ||
ul { | ||
padding-left: 2rem; | ||
} | ||
</style> |
Oops, something went wrong.