> ## Documentation Index
> Fetch the complete documentation index at: https://memberful.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Disable creation of passwords

> Disable password creation in Memberful so members sign in with a one-time magic link instead. Reduce friction and support requests from forgotten passwords.

export const RelatedDocs = ({link1, link2, link3, link4, link5, link6, link7, link8, link9, link10, className = ""}) => {
  const links = [link1, link2, link3, link4, link5, link6, link7, link8, link9, link10].filter(Boolean);
  if (!links.length) return null;
  return <section className={`related-docs border dark:border-gray-700 rounded-2xl px-6 py-4 mt-6 ${className}`}>
      <p className="mb-2 font-medium">
        <strong>Related help docs:</strong>
      </p>
      <ul className="space-y-1 mb-1 mt-1">
        {links.map((link, index) => <li key={index}>
            <a href={link.url}>{link.label}</a>
          </li>)}
      </ul>
    </section>;
};

By default, members sign in to their accounts using [**a magic link emailed to them**](/member-interface/account/access-their-account#sign-in-with-a-sign-in-email). However, members also have the option to create a password for their account and sign in using that instead.

In this help article, we'll show how to handle logins with a password or a magic link.

## Ways members can create a password

Members can set a password through several methods:

* Immediately after signing up via a custom field
* Right after requesting magic sign-in link
* From the magic sign-in email
* By performing a password reset from their account

[Learn more about these sign-in methods.](/member-interface/account/access-their-account/#create-a-password)

## Disable password support

If you'd prefer to disable password-based sign-in entirely, you can do so by going to *Settings → Passwords.* From there, toggle off **Support passwords.**

<Frame>
  <img src="https://mintcdn.com/memberful/rh_I8e0Vok-s0pFM/images/settings/disable-creation-of-passwords/disable-member-passwords.png?fit=max&auto=format&n=rh_I8e0Vok-s0pFM&q=85&s=eb88b393210523d0747bc0757508b9f8" alt="Members filter" width="1440" height="440" data-path="images/settings/disable-creation-of-passwords/disable-member-passwords.png" />
</Frame>

<Callout icon="triangle-alert" color="#FFE044">
  Disabling support for passwords does not automatically hide the *Account Password* custom field that can appear after sign-up. If you've previously added that custom field, be sure to [disable it](/configuration/feedback-and-policies/create-custom-fields/).
</Callout>

<RelatedDocs
  link1={{
url: "/member-interface/account/access-their-account/",
label: "Explore the different sign-in methods.",
}}
  link2={{
url: "/member-management/subscription-management/admin-member-management/",
label: "Manage your members from the Memberful dashboard.",
}}
/>
