Account Pages
Updated over a week ago

Overview

πŸ‘ Heads up

  • If you are using Starter Kit, there's no need need to manually create the Sections and Components below.

  • All the code examples below are just an implementation suggestions. For brevity, the styles are omitted.

  • For this guide, we will be creating Sections and Components locally. Make sure you have your Local Development Environment ready.

πŸ‘‰ Remember to commit and push newly created Sections and Components to your remote repository to sync the changes with Shogun Frontend.


This guide will walk you through implementing the account pages in your store. We will be using the Frontend Customer package.

The account pages will allow your customers to:

  • Register and log in

  • Manage addresses

  • See order history

  • Manage and reset password

🚧 For security reasons, managing payment methods is not supported using the frontend-customer package. Contact Shogun Support for an alternative approach.

Pages

Below is an overview of each page this guide will cover:

Page name

Page url

Requires authentication

Description

Account

/account

Yes

Customer's account page.

Register

/account/register

No

Where customers go to create their account.

Login

/account/login

No

Where customers go to login into their account.

Orders

/account/orders

Yes

Where customers can see their orders.

Address

/account/address

Yes

Where customers can see and manage their addresses.

Forgot Password

/account/recover-password

No

Where customers go if they need to recover their password.

Reset Password

/account/reset-password

No

The page a customer is redirected after clicking the reset password link in their email.

Did this answer your question?