Identity and Access Management
Identity management (IdM), also known as identity and access management (IAM or IdAM), is a framework of policies and technologies to ensure that the right users have the appropriate access to technology resources.
Authentication
Key Features
- Sign Up
- Sign In
- Password Reset
Package Details
Package Name : atp-authentication
Version : 1.1.2
Props
- showSignUp
- showReset
- logo
- redirectUrl
Installation
npm install atp-authentication
Usage
import React from "react";
import { Authentication } from "atp-authentication";
const Login = () => {
return (
<div>
<Authentication
showSignUp={false}
showReset={true}
logo="https://cdn-icons-png.flaticon.com/512/1791/1791961.png"
redirectUrl={{ componentpath: "/dashboard" }}
/>
</div>
);
};
export default withRouter(Login);
Screens
Services
Local Storage
Authorization
Key Features
- Repository
- Permission Management
- Role Management
- User Management
Package Details
Package Name : atp-authorization
Version : 1.1.2
Installation
npm install atp-authorization
Usage
import React from "react";
import { Authorization } from "atp-authorization";
const AccessManagement = () => {
return (
<div>
<Authorization />
</div>
);
};