-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend.html
More file actions
40 lines (37 loc) · 1.85 KB
/
send.html
File metadata and controls
40 lines (37 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<div id="angular-demo" class="content" role="main">
<div *ngIf="showLoading" class="loader">
<img src="../assets/loader.svg" />
</div>
<h1>Embed send document from template within your app</h1>
<p class="description">
BoldSign embedded requesting feature allows you to send the document for
signing process without leaving your application using iFrame. <br /><br />
Try filling out the details below and sending the document. This will help
you to understand the complete sending and signing process.
</p>
<div *ngIf="!showiframe">
<span>Fill the details to send for signing!</span>
<form id="document-sent" [formGroup]="userForm" (ngSubmit)="onSubmit()">
<div class="label-details">
<label for="templateId"> Template ID </label>
<input id="templateId" type="text" formControlName="templateId" placeholder="Enter the template id" />
<div style="text-align: right; font-size: 12px; padding-top: 4px">
ID of a template created in
<a class="text-decoration-none" href="https://app.boldsign.com">BoldSign Web App</a>
</div>
</div>
<div class="label-details">
<label for="name"> Signer Name </label>
<input id="name" type="text" formControlName="name" placeholder="Enter the signer name" />
</div>
<div class="label-details">
<label for="email"> Signer Email </label>
<input id="email" type="email" formControlName="email" placeholder="Enter the signer email" />
</div>
<button class="button" type="submit">Send Document for Signing</button>
</form>
</div>
<div *ngIf="showiframe">
<iframe [src]="src" height="1000"></iframe>
</div>
</div>