Angular
Use @subnoto/embed-angular to render the signing UI in an Angular app. Pass the iframe token and optional host; the component builds the embed URL.
Installation
Section titled “Installation”pnpm add @subnoto/embed-angular# or npm install @subnoto/embed-angularImport the embed module in your app or feature module.
Getting the token
Section titled “Getting the token”Create the iframe token on your backend and pass it to the client. See Iframe token for the API.
Using the component
Section titled “Using the component”<div class="embed-container"> <subnoto-sign-embed [token]="iframeToken" [host]="host" title="Subnoto signing"> </subnoto-sign-embed></div>Bind token (required) and optionally host (default https://app.subnoto.com). Use a sized container so the iframe fills the space.