Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added content/assets/user-management/user-list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 1 addition & 4 deletions content/guides/web-dotnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ cd login-page-demo/dot-net-idx-demo/
```


This is the file structure you will get in the ASP.NET demo, let me explain what each file does
This is the file structure you will get in the ASP.NET demo, let's see what each file does

- Samples - Contains all the code related to a sample demo created in MVC format using ASP.NET.

Expand All @@ -77,9 +77,6 @@ Source/
"apiKey": "",
"apiSecret": "",
"appName": "",
"ApiRequestSigning": "false",
"proxyAddress": "__HTTP_PROXY_ADDRESS__",
"proxyCredentials": "__HTTP_PROXY_CREDENTIAL__",
"connectionTimeout": "__HTTP_CONNECTION_TIMEOUT__",
"requestRetries": "__HTTP_CONNECTION_RETRY__",
"domainName": "https://api.loginradius.com/"
Expand Down
2 changes: 1 addition & 1 deletion content/guides/web-golang.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Get your credentials and whitelist your application domain as explained in this
cd login-page-demo/go-idx-demo/
```

This is the file structure you will get in the GoLang demo, let me explain what each file does
This is the file structure you will get in the GoLang demo, let's see what each file does

- config folder - Contains the public and secret environment files.

Expand Down
2 changes: 1 addition & 1 deletion content/guides/web-java.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ cd login-page-demo/java-idx-demo/

and Open/import java-idx-demo in your java IDE (Eclipse).

This is the file structure you will get in the Java demo, let me explain what each file does
This is the file structure you will get in the Java demo, let's see what each file does

- demo folder - Contains all the HTML, CSS and JS file to create UI for the test application.

Expand Down
3 changes: 1 addition & 2 deletions content/guides/web-nodejs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Get your credentials and whitelist your application domain as explained in this
cd login-page-demo/node-idx-demo/
```

This is the file structure you will get in the Node.js demo, let me explain what each file does
This is the file structure you will get in the Node.js demo, let's see what each file does

- demo folder - Contains all the HTML, CSS and JS file to create UI for the test application.

Expand Down Expand Up @@ -81,7 +81,6 @@ Get your credentials and whitelist your application domain as explained in this
apiKey: '<LoginRadius API key>',
apiSecret: '<LoginRadius API secret>',
siteName: '<LoginRadius App name>',
apiRequestSigning: false,
};
```

Expand Down
2 changes: 1 addition & 1 deletion content/guides/web-php.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Get your credentials and whitelist your application domain as explained in this
cd login-page-demo/php-idx-demo/
```

This is the file structure you will get in the PHP Demo, let me explain what each file does
This is the file structure you will get in the PHP Demo, let's see what each file does
- demo folder - Contains all the HTML, CSS and JS file to create UI for the test application.

- ajax_handler - Contains server side code and routing API to be used in demo
Expand Down
6 changes: 3 additions & 3 deletions content/guides/web-python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ Get your credentials and whitelist your application domain as explained in this
#### With https

```
git clone https://github.com/LoginRadius/login-page-demos.git`
git clone https://github.com/LoginRadius/login-page-demos.git
```
2. Now move to the directory Python demo by running the following command using the terminal

```
cd login-page-demo/python-idx-demo/Demo/
```
This is the file structure you will get in the Python demo, let me explain what each file does
This is the file structure you will get in the Python demo, let's see what each file does

- static folder - Contains all the CSS and JS and images to create UI for the test application.

Expand Down Expand Up @@ -96,7 +96,7 @@ commonOptions.appName = "<App Name>";
Run the below commands in the terminal from the root folder of the application

```
pip install flast requests pbkdf2 cryptography && cd python-idx-demo/Demo
pip install flask requests pbkdf2 cryptography && cd python-idx-demo/Demo
```
This command will install all the required dependency to run the python demo and change the directory to Demo folder from where your application will be served.

Expand Down
3 changes: 1 addition & 2 deletions content/guides/web-ror.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Get your credentials and whitelist your application domain as explained in this
cd login-page-demo/ruby-on-rails-idx-demo/
```

This is the file structure you will get in the ROR demo, let me explain what each file does
This is the file structure you will get in the ROR demo, let's see what each file does

- public folder - Contains all the HTML, CSS and JS file to create UI for the test application.

Expand Down Expand Up @@ -90,7 +90,6 @@ This is the file structure you will get in the ROR demo, let me explain what eac
API_KEY: <your-api-key>
API_SECRET: <your-api-secret>
CUSTOM_API_DOMAIN: "false"
API_REQUEST_SIGNING: "false"
```

### Client side:
Expand Down
29 changes: 29 additions & 0 deletions content/howto/user-management.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: Manage Users
description: ""
summary: "A guide to manage and serach all of the users"
---


### Overview
Under this section, you can manage your users using the functionality we have provided to assist you in handling your user base without needing to create your own management tool.


The User Management section contains all the registered users on your application.Here you are able to find the unique details of Each User including:
- UID
- Email
- Name
- Created Date
Last Signed In Date

This section also allows you to search an user with their Email or UID.

### Search users

**Step 1**: Log in to your Admin Console account and click to User Management tab from the left sidebar

**Step 2**: Enter the email or UID of the user and click the search button, as highlighted in the following screen:

<div style="text-align:center">
<img src="../assets/user-management/user-list.png" alt="Search User" />
</div>
7 changes: 7 additions & 0 deletions content/sdk-libraries/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ The LoginRadius SDKs currently support the following languages:
## Node.js Library
- [View on GitHub](https://github.com/LoginRadius/node-js-sdk)

## Python Library
- [View on GitHub](https://github.com/LoginRadius/python-sdk)

## Ruby Library
- [View on GitHub](https://github.com/LoginRadius/ruby-on-rails-sdk)


## Golang Library
- [View on GitHub](https://www.github.com/loginradius/go-sdk)

3 changes: 2 additions & 1 deletion gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ module.exports = {
"howto/email-templates",
"howto/social-login",
"howto/authentication-theme",
"howto/work-with-sott"
"howto/work-with-sott",
"howto/user-management",
],
Concepts: ["concepts/idx-overview"],
FAQ: [
Expand Down