Improve registration page and add a rules option

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2020-06-15 11:01:49 +02:00
parent 33e9b80b95
commit 97197e3811
28 changed files with 1329 additions and 1205 deletions

View File

@@ -73,6 +73,12 @@ const router = new Router({
component: () => import(/* webpackChunkName: "cookies" */ "@/views/Terms.vue"),
meta: { requiredAuth: false },
},
{
path: "/rules",
name: RouteName.RULES,
component: () => import(/* webpackChunkName: "cookies" */ "@/views/Rules.vue"),
meta: { requiredAuth: false },
},
{
path: "/interact",
name: RouteName.INTERACT,

View File

@@ -13,6 +13,7 @@ enum GlobalRouteName {
SEARCH = "Search",
TERMS = "TERMS",
INTERACT = "INTERACT",
RULES = "RULES",
}
// Hack to merge enums