v0.4.0: Phone Authentication

The version 0.4.0 adds the ability to sign-in using a Phone number, and adds design and usability improvements to the authentication pages

Β·2 min read
Cover Image for v0.4.0: Phone Authentication

The new version 0.4.0 dropped some more cool stuff, such as:

  • βœ… Phone number authentication πŸš€
  • βœ… Ability to link a phone number once signed up
  • βœ… Ability to update a phone number from the profile page
  • βœ… Authentication pages design overhaul
  • βœ… Added dynamic sign-in/up page based on configuration
  • βœ… Added oAuth providers logos

Let's take an in-depth look!

Phone Number Authentication

We can easily add phone number authentication by tweaking the global configuration:

auth: { providers: { emailPassword: false, phoneNumber: true, emailLink: false, oAuth: [GoogleAuthProvider], }, },

And the result will be the below:

Loading video...

Once enabled, we will be able to tweak the configuration in multiple places, such as the Authentication tab:

Auth providers linking

Additionally, the phone number can be added or removed from the user's profile page:

Loading video...

Dynamic Auth Configuration

By tweaking our global configuration, we can easily choose the authentication providers we want to use. For example, by choosing the below, we will enable Email Link authentication, Google Auth and Facebook Auth:

auth: { providers: { emailPassword: false, phoneNumber: true, emailLink: true, oAuth: [GoogleAuthProvider, FacebookAuthProvider], }, },
Dynamic Auth configuration

Updating your Makerkit codebase

To update your Makerkit codebase, run the following command:

git pull upstream main --allow-unrelated-histories

And then, solve the conflicts you will likely encounter.

πŸŽ‰ That's it for version 0.4.0. Time to update your applications!


Read more about Changelog

Cover Image for Introducing Marketing Components: Crafting Stunning Landing Pages with Ease

Introducing Marketing Components: Crafting Stunning Landing Pages with Ease

Β·5 min read
We're excited to announce the release of Marketing Components, a collection of reusable UI components for marketing websites and landing pages.
Cover Image for Introducing the Testimonial Plugin for Makerkit

Introducing the Testimonial Plugin for Makerkit

Β·4 min read
Introducing a new plugin to add testimonials to your app with ease
Cover Image for Creating a Delightful Onboarding Experience with Multi-Step Forms

Creating a Delightful Onboarding Experience with Multi-Step Forms

Β·10 min read
In this post, we'll show you how to create a delightful onboarding experience using the Multi-Step Form Component for Makerkit.
Cover Image for Introducing the Multi-Step Form Component for Makerkit

Introducing the Multi-Step Form Component for Makerkit

Β·3 min read
We're excited to announce the release of the Multi-Step Form Component for Makerkit. This component allows you to create multi-step forms with ease.
Cover Image for Announcing the Feedback plugin

Announcing the Feedback plugin

Β·3 min read
The feedback plugin is a new feature that allows your users to give feedback on your app.
Cover Image for Announcing the Version Updater component

Announcing the Version Updater component

Β·3 min read
The version updater component is a new feature that allow your app to check for updates and prompt the user to install them.