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.
"buyer@example.com"
Signature: "buyer@example.com" "{{on signature, signature inserted here}}"
Title: "buyer@example.com" "{{on signature, title inserted here}}"
Full name: "buyer@example.com" "{{on signature, full name inserted here}}"
Date signed: "buyer@example.com" "{{on signature, date signed inserted here}}"
"buyer@example.com"
Signature: "buyer@example.com" "{{on signature, signature inserted here}}"
Title: "buyer@example.com" "{{on signature, title inserted here}}"
Full name: "buyer@example.com" "{{on signature, full name inserted here}}"
Date signed: "buyer@example.com" "{{on signature, date signed inserted here}}"
{{signatory}}
Signature: {{signatory}} {{signature}}
Title: {{signatory}} {{title}}
Full name: {{signatory}} {{fullName}}
Date signed: {{signatory}} {{dateSigned}}
{
"$class": "org.accordproject.signature.tnd.TitleNameDateSignatureBlock",
"title": "{{on signature, title inserted here}}",
"signature": "{{on signature, signature inserted here}}",
"fullName": "{{on signature, full name inserted here}}",
"dateSigned": "{{on signature, date signed inserted here}}",
"signatory": "resource:org.accordproject.cicero.contract.AccordParty#buyer@example.com",
"clauseId": "3509248d-9681-4247-b434-82bd7b191e08"
}
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.