Skip to content

Commit 8bf5e67

Browse files
committed
text changes and anchor tagging
1 parent 3b6b20b commit 8bf5e67

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

lib/eSignature/controllers/eg020PhoneAuthentication.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ eg020PhoneAuthentication.createController = async (req, res) => {
6666
req.session.envelopeId = results.envelopeId; // Save for use by other examples
6767
// which need an envelopeId
6868
res.render('pages/example_done', {
69-
title: "Envelope sent",
70-
h1: "Envelope sent",
69+
title: "Require Phone Authentication for a Recipient",
70+
h1: "Require Phone Authentication for a Recipient",
7171
message: `The envelope has been created and sent!<br/>Envelope ID ${results.envelopeId}.`
7272
});
7373
}
@@ -88,7 +88,7 @@ eg020PhoneAuthentication.getController = (req, res) => {
8888
if (tokenOK) {
8989
res.render('pages/examples/eg020PhoneAuthentication', {
9090
eg: eg, csrfToken: req.csrfToken(),
91-
title: "Requiring phone authentication for a Recipient",
91+
title: "Require Phone Authentication for a Recipient",
9292
sourceFile: path.basename(__filename),
9393
sourceUrl: dsConfig.githubExampleUrl + 'eSignature/' + path.basename(__filename),
9494
documentation: dsConfig.documentation + eg,

lib/eSignature/examples/phoneAuthentication.js

Lines changed: 6 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

views/pages/examples/eg020PhoneAuthentication.ejs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<% include ../../partials/examplesHead %>
22

33
<h4>20. Require Phone Authentication for a Recipient</h4>
4+
5+
<p>
6+
Sends an envelope that requires entering a six-digit code from a text message or phone call for the purpose of multifactor authentication.
7+
</p>
48
<p>
59
The envelope includes a pdf document. Anchor text
610
(<a href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/auto-place/">AutoPlace</a>)
711
is used to position the signing fields in the documents.
812
</p>
9-
<p>
10-
Sends an envelope that requires entering a six-digit code from a text message or phone call for the purpose of multifactor authentication.
11-
</p>
1213

1314

1415
<% include ../../partials/docBody %>

0 commit comments

Comments
 (0)