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.
"alice@example.com"
Signature: "
Title: "
Full name: "
Date signed: "
"alice@example.com"
Signature: ""
Title: ""
Full name: ""
Date signed: ""
{{signatory}}
Signature: {{signature}}
Title: {{title}}
Full name: {{fullName}}
Date signed: {{dateSigned}}
{
"$class": "org.accordproject.signature.tnd.TitleNameDateSignatureBlock",
"title": "",
"signature": "",
"fullName": "",
"dateSigned": "",
"signatory": "resource:org.accordproject.cicero.contract.AccordParty#alice@example.com",
"clauseId": "f9fffd1b-d63c-4191-82b1-eb9a65bf09a5"
}
namespace org.accordproject.signature.tnd
import org.accordproject.cicero.contract.* from https://models.accordproject.org/cicero/contract.cto
import org.accordproject.cicero.runtime.* from https://models.accordproject.org/cicero/runtime.cto
import org.accordproject.signature.SignatureBlock from https://models.accordproject.org/signature/signature.cto
/**
* A detailed signature block, configured to render to PDF
* in white, and with all variables read-only in the Web editor
*/
asset TitleNameDateSignatureBlock extends SignatureBlock {
@DocuSignTab("Title", "optional")
@ContractEditor("readOnly")
@PdfStyle("background")
o String title
@DocuSignTab("SignHere")
@ContractEditor("readOnly")
@PdfStyle("background")
o String signature
@DocuSignTab("FullName")
@ContractEditor("readOnly")
@PdfStyle("background")
o String fullName
@DocuSignTab("DateSigned")
@ContractEditor("readOnly")
@PdfStyle("background")
o String dateSigned
}
Find the full logic for this template on on GitHub.
Type | Sample JSON |
---|
Type | Sample JSON |
---|
Type | Sample JSON |
---|
Type | Sample JSON |
---|
Please refer to the Cicero documentation for details and examples of how to integrate a call to a Cicero template into your application.
View the Latest code for this template on GitHub.