Skip to content

Commit c0894c5

Browse files
committed
change button styling across examples
1 parent cfe1bec commit c0894c5

32 files changed

+45
-45
lines changed

app/templates/eg001_embedded_signing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h4>1. Embedded Signing Ceremony</h4>
3030
value="{{ signer_name }}" required>
3131
</div>
3232
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
33-
<button type="submit" class="btn btn-primary">Submit</button>
33+
<button type="submit" class="btn btn-docu">Submit</button>
3434
</form>
3535

3636
{% endblock %}

app/templates/eg002_signing_via_email.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ <h4>2. Send an envelope with a remote (email) signer and cc recipient</h4>
4545
required />
4646
</div>
4747
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
48-
<button type="submit" class="btn btn-primary">Submit</button>
48+
<button type="submit" class="btn btn-docu">Submit</button>
4949
</form>
5050

5151
{% endblock %}

app/templates/eg003_list_envelopes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h4>3. List envelopes in the user's account</h4>
1717

1818
<form class="eg" action="" method="post" data-busy="form">
1919
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
20-
<button type="submit" class="btn btn-primary">Continue</button>
20+
<button type="submit" class="btn btn-docu">Continue</button>
2121
</form>
2222

2323
{% endblock %}

app/templates/eg004_envelope_info.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ <h4>4. Get an envelope's basic information and status</h4>
2828

2929
<form class="eg" action="" method="post" data-busy="form">
3030
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
31-
<button type="submit" class="btn btn-primary">Continue</button>
31+
<button type="submit" class="btn btn-docu">Continue</button>
3232
</form>
3333

3434
{% else %}
3535
<p>Problem: please first create an envelope using <a href="eg002">example 2.</a> <br/>
3636
Thank you.</p>
3737

3838
<form class="eg" action="eg002" method="get">
39-
<button type="submit" class="btn btn-primary">Continue</button>
39+
<button type="submit" class="btn btn-docu">Continue</button>
4040
</form>
4141
{% endif %}
4242

app/templates/eg005_envelope_recipients.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ <h4>5. List an envelope's recipients and their status</h4>
1919

2020
<form class="eg" action="" method="post" data-busy="form">
2121
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
22-
<button type="submit" class="btn btn-primary">Continue</button>
22+
<button type="submit" class="btn btn-docu">Continue</button>
2323
</form>
2424

2525
{% else %}
2626
<p>Problem: please first create an envelope using <a href="eg002">example 2.</a> <br/>
2727
Thank you.</p>
2828

2929
<form class="eg" action="eg002" method="get">
30-
<button type="submit" class="btn btn-primary">Continue</button>
30+
<button type="submit" class="btn btn-docu">Continue</button>
3131
</form>
3232
{% endif %}
3333

app/templates/eg006_envelope_docs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ <h4>6. List an envelope's documents</h4>
2525

2626
<form class="eg" action="" method="post" data-busy="form">
2727
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
28-
<button type="submit" class="btn btn-primary">Continue</button>
28+
<button type="submit" class="btn btn-docu">Continue</button>
2929
</form>
3030

3131
{% else %}
3232
<p>Problem: please first create an envelope using <a href="eg002">example 2.</a> <br/>
3333
Thank you.</p>
3434

3535
<form class="eg" action="eg002" method="get">
36-
<button type="submit" class="btn btn-primary">Continue</button>
36+
<button type="submit" class="btn btn-docu">Continue</button>
3737
</form>
3838
{% endif %}
3939

app/templates/eg007_envelope_get_doc.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ <h4>7. Download a document from an envelope</h4>
3030
Thank you.</p>
3131

3232
<form class="eg" action="eg002" method="get">
33-
<button type="submit" class="btn btn-primary">Continue</button>
33+
<button type="submit" class="btn btn-docu">Continue</button>
3434
</form>
3535
{% elif not documents_ok %}
3636
<p>Problem: please first create a list of the envelope's documents using
3737
<a href="eg006">example 6.</a> <br/>
3838
Thank you.</p>
3939

4040
<form class="eg" action="eg006" method="get">
41-
<button type="submit" class="btn btn-primary">Continue</button>
41+
<button type="submit" class="btn btn-docu">Continue</button>
4242
</form>
4343
{% else %}
4444
<p>Please choose a document.<br/>
@@ -55,7 +55,7 @@ <h4>7. Download a document from an envelope</h4>
5555
</select>
5656
</div>
5757
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
58-
<button type="submit" class="btn btn-primary">Continue</button>
58+
<button type="submit" class="btn btn-docu">Continue</button>
5959
</form>
6060
{% endif %}
6161

app/templates/eg008_create_template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h4>8. Create a template</h4>
2626

2727
<form class="eg" action="" method="post" data-busy="form">
2828
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
29-
<button type="submit" class="btn btn-primary">Continue</button>
29+
<button type="submit" class="btn btn-docu">Continue</button>
3030
</form>
3131

3232
{% endblock %}

app/templates/eg009_use_template.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ <h4>9. Send an envelope using a template</h4>
4949
required>
5050
</div>
5151
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
52-
<button type="submit" class="btn btn-primary">Submit</button>
52+
<button type="submit" class="btn btn-docu">Submit</button>
5353
</form>
5454

5555
{% else %}
5656
<p>Problem: please first create the template using <a href="eg008">example 8.</a> <br/>
5757
Thank you.</p>
5858

5959
<form class="eg" action="eg008" method="get">
60-
<button type="submit" class="btn btn-primary">Continue</button>
60+
<button type="submit" class="btn btn-docu">Continue</button>
6161
</form>
6262
{% endif %}
6363

app/templates/eg010_send_binary_docs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h4>10. Send an envelope using binary document transfer</h4>
4646
required>
4747
</div>
4848
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
49-
<button type="submit" class="btn btn-primary">Submit</button>
49+
<button type="submit" class="btn btn-docu">Submit</button>
5050
</form>
5151

5252
{% endblock %}

0 commit comments

Comments
 (0)