-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
175 additions
and
108 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,63 @@ | ||
--- | ||
title: Authentication Pages | ||
description: The features provided by DevDojo Auth | ||
prevTitle: 'Installation' | ||
prevURL: '/docs/install' | ||
prevSlug: 'install' | ||
slug: 'authentication-pages' | ||
nextTitle: 'Setup & Customizations' | ||
nextURL: '/docs/setup-customizations' | ||
nextSlug: 'setup-customizations' | ||
authenticationPages: true | ||
--- | ||
|
||
DevDojo Auth contains the features necessary for most common authentication functionality. Below is a general overview of the functionality provided. | ||
DevDojo Auth contains many pages that provide common authentication functionality. Below is a preview and overview of all the available authentication pages. | ||
|
||
## Login | ||
## Registration | ||
|
||
The Login Page. Visit this page at **/auth/login** | ||
|
||
<include src="docs/auth-page-image.html" page="login"></include><div class="p-5 rounded-b-lg border text-zinc-300 bg-zinc-900 border-zinc-700"> | ||
The login page is where a user can enter their email address and password and be authenticated in your application. You may optionally choose to show social provider links on this page. | ||
</div> | ||
|
||
## Register | ||
|
||
The Register Page. Visit this page at **/auth/register** | ||
|
||
<include src="docs/auth-page-image.html" page="register"></include><div class="p-5 rounded-b-lg border text-zinc-300 bg-zinc-900 border-zinc-700">The registration page is where a user can sign up for a new account. Additionally, you can require users to provide their full name and allow them so register from any <a href="{ url('/docs/config/social-providers') }">Social Provider</a>. | ||
</div> | ||
|
||
## Verify Email | ||
## Forgot Password | ||
## Confirm Password | ||
## Social Login | ||
## Two-Factor Authentication | ||
## Authentication Setup | ||
|
||
The Email Verification Page. Visit this page at **/auth/verify** | ||
|
||
<include src="docs/auth-page-image.html" page="verify"></include><div class="p-5 rounded-b-lg border text-zinc-300 bg-zinc-900 border-zinc-700">By default users are not required to verify their email. Toggle the <strong>Registration Require Email Verification</strong> option in the settings to show this screen after account creation.</div> | ||
|
||
## Password Confirmation | ||
|
||
The Password Confirmation Page. Visit this page at **/auth/confirm** | ||
|
||
<include src="docs/auth-page-image.html" page="confirm"></include><div class="p-5 rounded-b-lg border text-zinc-300 bg-zinc-900 border-zinc-700">Add the <strong>password.confirm</strong> middleware to any page, and users will be required to confirm their password before gaining access to the page.</div> | ||
|
||
## Password Reset Request | ||
|
||
The Password Reset Request Page. Visit this page at **/auth/password/reset** | ||
|
||
<include src="docs/auth-page-image.html" page="password-reset-request"></include><div class="p-5 rounded-b-lg border text-zinc-300 bg-zinc-900 border-zinc-700">When the user clicks the <strong>Forgot Password</strong> link, this is the page they will see, allowing them to <strong>Request</strong> a Password Reset.</div> | ||
|
||
## Password Reset | ||
|
||
The Password Reset Page. Visit this page at **/auth/password/ReAlLyLoNgToKeNhErE** | ||
|
||
<include src="docs/auth-page-image.html" page="password-reset"></include><div class="p-5 rounded-b-lg border text-zinc-300 bg-zinc-900 border-zinc-700">This is the actual password reset page. When the user clicks a link from their email to reset their password, this is the page they will see, allowing them to reset their password.</div> | ||
|
||
## Two-Factor Challenge | ||
|
||
The Password Confirmation Page. Visit this page at **/auth/two-factor-challenge** | ||
|
||
<include src="docs/auth-page-image.html" page="two-factor"></include><div class="p-5 rounded-b-lg border text-zinc-300 bg-zinc-900 border-zinc-700">If you are using 2FA and the user has enabled 2FA for their account, this is the page they will see after attempting to log in. Learn more about <a href="{ url('/docs/config/two-factor-auth') }">Two-Factor Authentication here</a>.</div> | ||
|
||
--- | ||
|
||
Next, lets dive into customizations and confiruations you can add to your authentication pages. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Social Providers | ||
description: Allow users to authenticate with many Social Providers | ||
--- | ||
|
||
Add Info Here... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Setup and Customizations | ||
description: Learn about the Authentication Setup and Customization page | ||
setup: true | ||
--- | ||
|
||
DevDojo Auth comes with a simple Setup page to help you customize and configure your authentication. | ||
|
Oops, something went wrong.