@heymarco/next-auth
Version:
A complete authentication solution for web applications.
29 lines (24 loc) • 1.52 kB
text/typescript
// elements:
export const signUpTabElm = ':where(.signUp)' // zero degree specificity to be easily overwritten
export const signInTabElm = ':where(.signIn)' // zero degree specificity to be easily overwritten
export const recoverTabElm = ':where(.recover)' // zero degree specificity to be easily overwritten
export const resetTabElm = ':where(.reset)' // zero degree specificity to be easily overwritten
export const signUpTitleElm = ':where(.signUpTitle)'
export const signInTitleElm = ':where(.signInTitle)'
export const recoverTitleElm = ':where(.recoverTitle)'
export const resetTitleElm = ':where(.resetTitle)'
export const nameElm = ':where(.name)'
export const emailElm = ':where(.email)'
export const usernameElm = ':where(.username)'
export const passwordElm = ':where(.password)'
export const password2Elm = ':where(.password2)'
export const doSignUpElm = ':where(.doSignUp)'
export const doSignInElm = ':where(.doSignIn)'
export const doRecoverElm = ':where(.doRecover)'
export const doResetElm = ':where(.doReset)'
export const signinSeparatorElm = ':where(.signinSeparator)'
export const switchSignUpElm = ':where(.switchSignUp)'
export const switchSignInElm = ':where(.switchSignIn)'
export const gotoSignInElm = ':where(.gotoSignIn)'
export const gotoRecoverElm = ':where(.gotoRecover)'
export const gotoHomeElm = ':where(.gotoHome)'