Signature Block (Title, Name, Date)

Author: Accord Project

signature-block-title-name-date@0.5.0 Clause ^0.21.0 2ca92a3d03cec47d853e81e9a57fb2113cc4bfbc8c79cfae3bb8e1db86a4d2ac

A signature block with name, title, date input fields

Download Archive Download Compiled Archive Open in Template Studio Open in VSCode Web

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.

Template Text

"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"
}

Template Model

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
}

Model Dependencies

Template Logic

Find the full logic for this template on on GitHub.

State Types

Type Sample JSON

Request Types

Type Sample JSON

Response Types

Type Sample JSON

Events Types

Type Sample JSON

Technical Integration

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.