Add Signup View

This commit is contained in:
Hubert Van De Walle 2020-04-12 14:33:28 +02:00
parent facdc009c2
commit 3cdd4efd36

21
web/src/views/Signup.vue Normal file
View 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>