Skip to content

Commit 9561f57

Browse files
committed
feat: skeleton implementation of join view
1 parent e75cd83 commit 9561f57

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

src/views/Join.vue

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<template>
2+
<div class="join-section">
3+
<h1 class="view-title">Register and Join</h1>
4+
<div class="form"></div>
5+
</div>
6+
</template>
7+
8+
<script>
9+
// import { useRoute, useRouter } from 'vue-router'
10+
// import { AuthStore } from '@/composables/stores/auth'
11+
// import { inject } from 'vue'
12+
13+
export default {
14+
name: 'Join',
15+
setup() {
16+
// const $auth = inject(AuthStore)
17+
// const $route = useRoute()
18+
// const $router = useRouter()
19+
// $auth.confirmRegistration($route.params.username, $route.params.token)
20+
//.finally(() => $router.push('/'))
21+
22+
return { }
23+
}
24+
}
25+
</script>
26+
27+
<style lang="scss">
28+
.join {
29+
main #public-content { grid-template-areas: 'header header' 'main main' 'sidebar sidebar'; }
30+
.join-section {
31+
grid-area: main;
32+
.view-title {
33+
color: $secondary-font-color;
34+
font-size: $font-size-xl;
35+
font-weight: 600;
36+
text-transform: none;
37+
}
38+
.form { margin: rem 0 1rem; }
39+
}
40+
}
41+
</style>

0 commit comments

Comments
 (0)