Add unfinished website section

This commit is contained in:
Ske
2019-04-19 18:08:27 +02:00
parent d081be838a
commit 3d6fa86518
16 changed files with 3882 additions and 11 deletions

View File

@@ -0,0 +1,20 @@
<template>
<b-container class="d-flex justify-content-center"><span class="sr-only">Loading...</span><b-spinner class="m-5"></b-spinner></b-container>
</template>
<script>
import API from "./API";
export default {
async created() {
const code = this.$route.query.code;
if (!code) this.$router.push({ name: "home" });
const me = await API.login(code);
if (me) this.$router.push({ name: "home" });
}
}
</script>
<style>
</style>