Giter Club home page Giter Club logo

Comments (6)

silentworks avatar silentworks commented on May 29, 2024 4

This is now possible with the latest release by passing a showLinks={false} prop to the component.

<Auth
  supabaseClient={supabase}
  view="sign_in"
  showLinks={false}
/>

This now means if you are using something like NextJS, you can just show the view of the component you wish on each page without worrying about the component using its internal state to change to the signup page. Do note however that this is just a visual change so if a user knows how to pass state into an component using the React dev tools for instance they could show the sign_up view by passing that to the view prop.

from auth-ui.

WesselKoorn avatar WesselKoorn commented on May 29, 2024 1

In my case I wanted to hide the signup link but didn't want to get rid of the magic and forgot password links. I solved it with custom styling:

<Auth
  supabaseClient={supabaseClient}
  providers={[]}
  magicLink={true}
  appearance={{
     theme: ThemeSupa,
     className: {
      anchor: styles.anchor,
     },
  }}
/>

Scss module:

.anchor {
  &:nth-child(3) {
    display: none;
  }
}

from auth-ui.

kennethcassel avatar kennethcassel commented on May 29, 2024

+1 on this, would be nice to be able to use this in a flow where someone has to first purchase a subscription / access before sign-up.

from auth-ui.

bobtechinsider avatar bobtechinsider commented on May 29, 2024

+1

from auth-ui.

jtlapp avatar jtlapp commented on May 29, 2024

Never mind. Post deleted. I was passing sign_in for both pages. It's working now.

from auth-ui.

silentworks avatar silentworks commented on May 29, 2024

@jtlapp you gave me a scare there as I just noticed the original message in my inbox. Thanks for coming back and stating what the issue was.

from auth-ui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.