mirror of
https://github.com/romancm/gamebrary
synced 2024-11-23 19:53:14 +00:00
wip stuff
This commit is contained in:
parent
f2467775c8
commit
1552cf72bc
2 changed files with 14 additions and 21 deletions
|
@ -1,25 +1,24 @@
|
||||||
<!-- TODO: get route source in param -->
|
|
||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="auth text-white">
|
<b-container>
|
||||||
<img src="/static/gamebrary-logo.png" />
|
|
||||||
<h1 class="lead my-3">Welcome to Gamebrary!</h1>
|
|
||||||
|
|
||||||
<b-alert
|
<b-alert
|
||||||
v-if="showExpiredAlert"
|
|
||||||
variant="warning"
|
|
||||||
class="my-2 px-4"
|
|
||||||
show
|
show
|
||||||
|
variant="danger"
|
||||||
|
dismissible
|
||||||
>
|
>
|
||||||
Your session expired!
|
Your session expired!
|
||||||
</b-alert>
|
</b-alert>
|
||||||
|
|
||||||
|
<!-- <b-alert v-if="!showExpiredAlert">
|
||||||
|
|
||||||
|
</b-alert> -->
|
||||||
|
|
||||||
<b-spinner
|
<b-spinner
|
||||||
v-if="loading"
|
v-if="loading"
|
||||||
label="Spinning"
|
label="Spinning"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<section id="auth" />
|
<section id="auth" />
|
||||||
</div>
|
</b-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -173,15 +172,3 @@ export default {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" rel="stylesheet/scss" scoped>
|
|
||||||
.auth {
|
|
||||||
height: 100vh;
|
|
||||||
margin: 5rem auto 0;
|
|
||||||
color: white;
|
|
||||||
flex-direction: column;
|
|
||||||
text-align: center;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
<h2 class="my-2">Explore</h2>
|
<h2 class="my-2">Explore</h2>
|
||||||
|
|
||||||
USERS | BOARDS | NEWS (TWITTER)
|
USERS | BOARDS | NEWS (TWITTER)
|
||||||
|
<a class="twitter-timeline" href="https://twitter.com/Wario64?ref_src=twsrc%5Etfw">Tweets by Wario64</a>
|
||||||
|
|
||||||
<div class="boards">
|
<div class="boards">
|
||||||
<b-card
|
<b-card
|
||||||
|
@ -40,6 +41,11 @@ export default {
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.load();
|
this.load();
|
||||||
|
|
||||||
|
const plugin = document.createElement("script");
|
||||||
|
plugin.setAttribute('src', 'https://platform.twitter.com/widgets.js');
|
||||||
|
plugin.async = true;
|
||||||
|
document.head.appendChild(plugin);
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
|
Loading…
Reference in a new issue