Skip to content

Commit 2eea151

Browse files
committed
feat: default user registration completed page.
1 parent d69aedf commit 2eea151

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed

docs/pages/login_landing.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
id: login_landing
3+
title: User Login Completed
4+
slug: /pages/login-landing
5+
description: User login completed
6+
---
7+
8+
### Why I see this?
9+
10+
This is the default landing page once user successfully logged in.
11+
12+
You should change this page to your website, management control panel, etc.
13+
14+
### How to change default login return-to URL
15+
16+
import Tabs from "@theme/Tabs";
17+
import TabItem from "@theme/TabItem";
18+
19+
<Tabs
20+
defaultValue="console"
21+
values={[
22+
{label: 'Console', value: 'console'},
23+
]}>
24+
<TabItem value="console">
25+
26+
1. In Admin console, navigate to <b>Settings &rarr; Auth</b>.
27+
1. Click the <b>Edit</b> button.
28+
1. Follow wizard steps.
29+
1. Replace the value of _Login default return to url_ with your URL.
30+
31+
</TabItem>
32+
</Tabs>

docs/pages/register_landing.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
id: register_landing
3+
title: User Registration Completed
4+
slug: /pages/register-landing
5+
description: User registration completed
6+
---
7+
8+
### Why I see this?
9+
10+
This is the default landing page once user registration completed.
11+
12+
You should change this page to your website, management control panel, etc.
13+
14+
### How to change registration return-to URL
15+
16+
import Tabs from "@theme/Tabs";
17+
import TabItem from "@theme/TabItem";
18+
19+
<Tabs
20+
defaultValue="console"
21+
values={[
22+
{label: 'Console', value: 'console'},
23+
]}>
24+
<TabItem value="console">
25+
26+
1. In Admin console, navigate to <b>Settings &rarr; Auth</b>.
27+
1. Click the <b>Edit</b> button.
28+
1. Follow wizard steps.
29+
1. Replace the value of _Register default return to url_ with your URL.
30+
31+
</TabItem>
32+
</Tabs>

0 commit comments

Comments
 (0)