Seamlessly add document signing into Angular apps in minutes.
Signing Form
Embed our full interactive Signing Form into your Angular applications. It offers a streamlined, user-friendly interface for efficient and seamless document signing experience.
Form Builder
Utilize our comprehensive Form Builder to effortlessly create and customize document templates. It enhances your application with a full-features document creation tool.
Embed the Signing Form Angular component effortlessly into your application to enhance the document signing experience. It is perfectly suited for KYC, CRM and onboarding workflows, thereby ensuring a smooth and cohesive user experience across your platform.
import { Component } from '@angular/core';
import { DocusealFormComponent } from '@docuseal/angular';
@Component({
selector: 'app-root',
standalone: true,
imports: [DocusealFormComponent],
template: `
<div class="app">
<docuseal-form
[src]="'https://docuseal.com/d/LEVGR9rhZYf86M'"
[email]="'signer@example.com'">
</docuseal-form>
</div>
`
})
export class AppComponent {}
Seamlessly integrate our Form Builder into your Angular applications, not just for document signing but also for crafting the entire document form. With just a few lines of code, you can effortlessly embed a comprehensive document builder, enhancing both the functionality and the user experience on your platform.
import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { DocusealBuilderComponent } from '@docuseal/angular';
@Component({
selector: 'app-root',
standalone: true,
imports: [DocusealBuilderComponent],
template: `
<div class="app">
<ng-container *ngIf="token">
<docuseal-builder [token]="token"></docuseal-builder>
</ng-container>
</div>
`
})
export class AppComponent implements OnInit {
token: string = ''
constructor(private http: HttpClient) {}
ngOnInit() {
this.http.post('/api/docuseal/builder_token', {}).subscribe((data: any) => {
this.token = data.token;
});
}
}
DocuSeal allows you to bring document signing process into your apps.
This perfectly fits CRM, KYC, and onboarding workflows.