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.signature.tnd.TitleNameDateSignatureBlock",
"title": "Title",
"signature": "--------",
"fullName": "Full Name",
"dateSigned": "Date Signed",
"signatory": "resource:org.accordproject.cicero.contract.AccordParty#buyer@example.com",
"clauseId": "aae460f9-5476-4d9f-ba28-726103143195"
}
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.block.SignatureClause from https://models.accordproject.org/signature/block.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 SignatureClause {
@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
}
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.