Preventor docs
Search…
Identity Verification
getting started
Overview
web - client-side SDKs
HTML + Javascript
Angular
React
Vue.js
mobile - client-side SDKs
iOS
Android
Server
API Reference
Webhooks
Resources
Document image quality requirements
Powered By
GitBook
Angular
Steps to integrate the Web SDK into Angular application.
Verification Flow
1. Installation
To install the Preventor Web SDK, add the following to your project’s:
1.
Install the latest version from NPM.
1
npm
i @preventor/ngx-pvt-button
Copied!
2. Import the
NgxPvtButtonModule
module.
1
import
{
NgxPvtButtonModule
}
from
'@preventor/ngx-pvt-button'
;
2
3
@
NgModule
({
4
imports
:
[
5
// ...
6
NgxPvtButtonModule
7
]
8
})
9
export
class
MyModule
{}
10
Copied!
3. Add
ngx-pvt-button
tag in your HTML
1
<
ngx-pvt-button
[config]
=
"
YOUR_CONFIGURATION
"
>
</
ngx-pvt-button
>
Copied!
You have successfully installed the Preventor Web SDK!
web - client-side SDKs - Previous
HTML + Javascript
Next - web - client-side SDKs
React
Last modified
5mo ago
Copy link
Contents
Verification Flow
1. Installation