Add Signup View
This commit is contained in:
parent
facdc009c2
commit
3cdd4efd36
21
web/src/views/Signup.vue
Normal file
21
web/src/views/Signup.vue
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<div id="app">
|
||||||
|
<Navbar/>
|
||||||
|
<b-container class="mt-5">
|
||||||
|
<SignupForm/>
|
||||||
|
</b-container>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Navbar from "@/components/Navbar";
|
||||||
|
import SignupForm from "@/components/SignupForm";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'Home',
|
||||||
|
components: {
|
||||||
|
Navbar,
|
||||||
|
SignupForm
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
Loading…
x
Reference in New Issue
Block a user