forked from docusign/code-examples-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheg016_set_tab_values.html
More file actions
52 lines (45 loc) · 2.13 KB
/
Copy patheg016_set_tab_values.html
File metadata and controls
52 lines (45 loc) · 2.13 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
41
42
43
44
45
46
47
48
49
50
51
52
<!-- extend base layout --> {% extends "base.html" %} {% block content %}
<h4>16. Set tab values for an envelope</h4>
<p>
This example creates an example with both read-only tabs (fields) and tabs that can
be updated by the recipient.
</p>
<p>The example also sets custom metadata in the envelope via the envelope custom fields feature.</p>
{% if show_doc %}
<p><a target='_blank' href='{{ documentation | safe }}'>Documentation</a> about this example.</p>
{% endif %}
<p>
API method used:
<a target='_blank' href="https://developers.docusign.com/esign-rest-api/reference/Envelopes/Envelopes/create">Envelopes::create</a>.
</p>
<p>
View source file <a target="_blank" href="{{ source_url | safe }}">{{ source_file }}</a> on GitHub.
</p>
<form class="eg" action="" method="post" data-busy="form">
<div class="form-group">
<label for="signer_email">Signer Email</label>
<input type="email" class="form-control" id="signer_email" name="signer_email"
aria-describedby="emailHelp" placeholder="pat@example.com" required
value="{{ signer_email }}">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="signer_name">Signer Name</label>
<input type="text" class="form-control" id="signer_name" placeholder="Pat Johnson" name="signer_name"
value="{{ signer_name }}" required>
</div>
<div class="form-group">
<label for="cc_email">CC Email</label>
<input type="email" class="form-control" id="cc_email" name="cc_email"
aria-describedby="emailHelp" placeholder="pat@example.com" required >
<small id="emailHelp" class="form-text text-muted">The email for the cc recipient must be different from the signer's email.</small>
</div>
<div class="form-group">
<label for="cc_name">CC Name</label>
<input type="text" class="form-control" id="cc_name" placeholder="Pat Johnson" name="cc_name"
required >
</div>
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
{% endblock %}