Skip to content

Commit

Permalink
Adjust privacy page spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
big213 committed Apr 11, 2021
1 parent b3d3c0c commit 9d34da9
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import * as Knex from "knex";


export async function up(knex: Knex): Promise<void> {
}


export async function down(knex: Knex): Promise<void> {
}

56 changes: 41 additions & 15 deletions frontend/pages/legal/privacy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,54 @@
</p>
<p>
CubePB.com is a website for tracking and showcasing your personal
bests in speedcubing events. The website source code is available under GPL-3.0 open source license, and it can be viewed at the <a href="https://github.com/cubing/CubePB" target="_blank"
bests in speedcubing events. The website source code is available
under GPL-3.0 open source license, and it can be viewed at the
<a href="https://github.com/cubing/CubePB" target="_blank"
>Github repository</a
>.
</p>
<p>
<div class="pb-2">
<span class="subheader">Data</span>
<ul>
<li>When you login, CubePB stores your name, email, profile picture, country of origin, and WCA ID, as recorded on your WCA account. You can manage your WCA account settings <a @click="goToWcaAccountManagement()">here</a>.</li>
<li>When you enter PBs (Personal Bests), CubePB stores your PB data under the current logged in user.</li>
<li>By default, your profile page, with your user information and PBs will be made publicly visible for everyone to see. However, you can adjust this behavior in the <nuxt-link to="/settings">settings page</nuxt-link>.</li>
<li>When you login, a temporary cookie is stored to identify you to the website, even after you close the browser session. When you logout, or too much time has passed, the cookie is automatically deleted.</li>
<li>
When you login, CubePB stores your name, email, profile
picture, country of origin, and WCA ID, as recorded on your
WCA account. You can manage your WCA account settings
<a @click="goToWcaAccountManagement()">here</a>.
</li>
<li>
When you enter PBs (Personal Bests), CubePB stores your PB
data under the current logged in user.
</li>
<li>
By default, your profile page, with your user information and
PBs will be made publicly visible for everyone to see.
However, you can adjust this behavior in the
<nuxt-link to="/settings">settings page</nuxt-link>.
</li>
<li>
When you login, a temporary cookie is stored to identify you
to the website, even after you close the browser session. When
you logout, or too much time has passed, the cookie is
automatically deleted.
</li>
</ul>
</p>
<p>
</div>
<div class="pb-2">
<span class="subheader">Security</span>
<ul>
<li>This website works strictly over HTTPS to provide you a secured environment.</li>
<li>Your email address is not accessible by other users on the site. However, it can be viewed by the site administrator, for administration purposes. We promise not to share your email with others.</li>
<li>
This website works strictly over HTTPS to provide you a
secured environment.
</li>
<li>
Your email address is not accessible by other users on the
site. However, it can be viewed by the site administrator, for
administration purposes. We promise not to share your email
with others.
</li>
</ul>
</p>
</div>
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
Expand All @@ -47,10 +75,8 @@
<script>
import { goToWcaAccountManagement } from '~/services/auth'
export default {
methods: {
goToWcaAccountManagement
}
goToWcaAccountManagement,
},
}
</script>

0 comments on commit 9d34da9

Please sign in to comment.