Signature with Title, Name and Date
Static text that can be added to a contract to autoplace a signature block, with an optional title, name and the date.
A signature block with name, title, date input fields
Static text that can be added to a contract to autoplace a signature block, with an optional title, name and the date.
Signature:
"--------" "buyer@example.com"
Title: "Title" "buyer@example.com"
Full name: "Full Name" "buyer@example.com"
Date signed: "Date Signed" "buyer@example.com"
**Signature:**\
\
"--------" "buyer@example.com"
**Title:** "Title" "buyer@example.com"
**Full name:** "Full Name" "buyer@example.com"
**Date signed:** "Date Signed" "buyer@example.com"
**Signature:**\
\
{{signature}} {{signatory}}
**Title:** {{title}} {{signatory}}
**Full name:** {{fullName}} {{signatory}}
**Date signed:** {{dateSigned}} {{signatory}}
{
"$class": "org.accordproject.signatureblocktitlenamedate@0.1.0.TemplateModel",
"title": "Title",
"signature": "--------",
"fullName": "Full Name",
"dateSigned": "Date Signed",
"signatory": "resource:org.accordproject.party.Party#buyer@example.com",
"clauseId": "7a642106-a9ef-4f2c-b9cf-929f01ed559e",
"$identifier": "7a642106-a9ef-4f2c-b9cf-929f01ed559e"
}
namespace org.accordproject.signatureblocktitlenamedate@0.1.0
import org.accordproject.contract@0.2.0.Clause from https://models.accordproject.org/accordproject/contract@0.2.0.cto
/**
* A detailed signature block, configured to render to PDF
* in white, and with all variables read-only in the Web editor
*/
@template
asset TemplateModel extends Clause {
@DocuSignTab("type", "Title", "optional", true)
@Pdf("style", "background")
@ContractEditor("readOnly", true,
"fontFamily", "Lucida Console, Courier, monospace",
"backgroundColor", "#FAE094", "border", "#CCA855")
@FormEditor("hide", true)
o String title
@DocuSignTab("type", "SignHere")
@Pdf("style", "background")
@ContractEditor("readOnly", true,
"fontFamily", "Lucida Console, Courier, monospace",
"backgroundColor", "#FAE094", "border", "#CCA855")
@FormEditor("hide", true)
o String signature
@DocuSignTab("type", "FullName")
@Pdf("style", "background")
@ContractEditor("readOnly", true,
"fontFamily", "Lucida Console, Courier, monospace",
"backgroundColor", "#FAE094", "border", "#CCA855")
@FormEditor("hide", true)
o String fullName
@DocuSignTab("type", "DateSigned")
@Pdf("style", "background")
@ContractEditor("readOnly", true,
"fontFamily", "Lucida Console, Courier, monospace",
"backgroundColor", "#FAE094", "border", "#CCA855")
@FormEditor("hide", true)
o String dateSigned
o String signatory
}
Find the full logic for this template on on GitHub.
| Type | Sample JSON |
|---|---|
| org.accordproject.runtime@0.2.0.State | |
| Type | Sample JSON |
|---|---|
| org.accordproject.runtime@0.2.0.Request | |
| Type | Sample JSON |
|---|---|
| org.accordproject.runtime@0.2.0.Response | |
| Type | Sample JSON |
|---|
Please refer to the Accord Project documentation for how to use a template or integrate it within your application.
View the Latest code for this template on GitHub.