Implemented actual authentication guards, began implementing main login user flows
This commit is contained in:
24
ui/src/pages/Join.vue
Normal file
24
ui/src/pages/Join.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<div class="min-h-screen flex items-center justify-center ">
|
||||
<div class="w-full max-w-2xl mx-auto p-8 text-center">
|
||||
<h1 class="text-4xl sm:text-5xl font-extrabold mb-4">
|
||||
welcome to the 17th
|
||||
</h1>
|
||||
<p class=" mb-8">
|
||||
Welcome — click below to get started.
|
||||
</p>
|
||||
|
||||
<Button class="w-44" @click="goToLogin">Get started</Button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Button from '@/components/ui/button/Button.vue';
|
||||
|
||||
|
||||
function goToLogin() {
|
||||
window.location.href = 'https://aj17thdevapi.nexuszone.net/login';
|
||||
}
|
||||
|
||||
</script>
|
||||
Reference in New Issue
Block a user