Skip to content

Commit

Permalink
Add PageForgotPassword & PageResendVerification + Link events between…
Browse files Browse the repository at this point in the history
… forms
  • Loading branch information
lcharette committed Sep 11, 2024
1 parent 6cfdd5d commit 32481ee
Show file tree
Hide file tree
Showing 15 changed files with 511 additions and 82 deletions.
158 changes: 79 additions & 79 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions src/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import MainContent from './components/Content/MainContent.vue'
import FooterContent from './components/Content/FooterContent.vue'
import FormLogin from './components/Content/FormLogin.vue'
import FormRegister from './components/Content/FormRegister.vue'
import FormForgotPassword from './components/Content/FormForgotPassword.vue'
import NavBar from './components/NavBar/NavBar.vue'
import NavBarDropdown from './components/NavBar/NavBarDropdown.vue'
import NavBarDropdownSeparator from './components/NavBar/NavBarDropdownSeparator.vue'
Expand All @@ -21,6 +22,8 @@ import NavBarUserCard from './components/NavBar/NavBarUserCard.vue'
import NavBarUserCardButton from './components/NavBar/NavBarUserCardButton.vue'
import PageLogin from './views/PageLogin.vue'
import PageRegister from './views/PageRegister.vue'
import PageForgotPassword from './views/PageForgotPassword.vue'
import PageResendVerification from './views/PageResendVerification.vue'
import SideBar from './components/SideBar/SideBar.vue'
import SideBarDropdown from './components/SideBar/SideBarDropdown.vue'
import SideBarItem from './components/SideBar/SideBarItem.vue'
Expand All @@ -35,6 +38,7 @@ export {
FooterContent,
FormLogin,
FormRegister,
FormForgotPassword,
NavBar,
NavBarDropdown,
NavBarDropdownSeparator,
Expand All @@ -44,6 +48,8 @@ export {
NavBarUserCardButton,
PageLogin,
PageRegister,
PageForgotPassword,
PageResendVerification,
SideBar,
SideBarDropdown,
SideBarItem,
Expand All @@ -60,6 +66,7 @@ export default {
.component('UFFooterContent', FooterContent)
.component('UFFormLogin', FormLogin)
.component('UFFormRegister', FormRegister)
.component('UFFormForgotPassword', FormForgotPassword)
.component('UFNavBar', NavBar)
.component('UFNavBarDropdown', NavBarDropdown)
.component('UFNavBarDropdownSeparator', NavBarDropdownSeparator)
Expand All @@ -69,6 +76,8 @@ export default {
.component('UFNavBarUserCardButton', NavBarUserCardButton)
.component('UFPageLogin', PageLogin)
.component('UFPageRegister', PageRegister)
.component('UFPageForgotPassword', PageForgotPassword)
.component('UFPageResendVerification', PageResendVerification)
.component('UFSideBar', SideBar)
.component('UFSideBarDropdown', SideBarDropdown)
.component('UFSideBarItem', SideBarItem)
Expand All @@ -86,6 +95,7 @@ declare module 'vue' {
UFFooterContent: typeof FooterContent
UFFormLogin: typeof FormLogin
UFFormRegister: typeof FormRegister
UFFormForgotPassword: typeof FormForgotPassword
UFNavBar: typeof NavBar
UFNavBarDropdown: typeof NavBarDropdown
UFNavBarDropdownSeparator: typeof NavBarDropdownSeparator
Expand All @@ -95,6 +105,8 @@ declare module 'vue' {
UFNavBarUserCardButton: typeof NavBarUserCardButton
UFPageLogin: typeof PageLogin
UFPageRegister: typeof PageRegister
UFPageForgotPassword: typeof PageForgotPassword
UFPageResendVerification: typeof PageResendVerification
UFSideBar: typeof SideBar
UFSideBarDropdown: typeof SideBarDropdown
UFSideBarItem: typeof SideBarItem
Expand Down
Loading

0 comments on commit 32481ee

Please sign in to comment.