Skip to content
Snippets Groups Projects
Commit b8823d34 authored by Titus Netland's avatar Titus Netland
Browse files

Components and views fixes, HeroIcon added

parent bbac9b8c
No related branches found
No related tags found
1 merge request!72Components and views fixes
Pipeline #179097 failed
<template>
<div class="h-screen grid">
<div class="h-screen grid md:mt-8">
<LoginForm></LoginForm>
</div>
</template>
......
<template>
<div class="newPasswordPage">
<div class="h-screen grid md:mt-8">
<NewPasswordForm></NewPasswordForm>
</div>
</template>
......@@ -13,11 +13,3 @@ export default {
},
};
</script>
<style scoped>
.newPasswordPage {
background-color: white;
height: 100%;
overflow: auto;
}
</style>
<template>
<div class="h-screen grid">
<div class="h-screen grid md:mt-8">
<RegisterFormComponent />
</div>
</template>
......
<template>
<div class="resetPassword">
<div class="h-screen grid md:mt-8">
<ResetPassword></ResetPassword>
</div>
</template>
......@@ -13,11 +13,3 @@ export default {
},
};
</script>
<style scoped>
.resetPassword {
background-color: white;
height: 100%;
overflow: auto;
}
</style>
......@@ -4,7 +4,7 @@ module.exports = defineConfig({
transpileDependencies: true,
chainWebpack: (config) => {
config.plugin("html").tap((args) => {
args[0].title = "Borrow Company";
args[0].title = "Borrow Community";
return args;
});
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment