You are here

signaturefield.tpl.php in SignatureField 6

Signaturefield element template file

File

templates/signaturefield.tpl.php
View source
<?php

/**
 * @file
 * Signaturefield element template file
 */

//dpm($element);
?>
<p class='drawItDesc'>Draw your signature</p>
<div class='sig sigWrapper'>
  <div class='typed'></div>
  <canvas class='pad' width='<?php

echo $element['#width'];
?>' height='<?php

echo $element['#height'];
?>'></canvas>
  <input type='hidden' name='<?php

echo $element['#name'];
?>' id='<?php

echo $element['#id'];
?>' class='output' value='<?php

echo $element['#default_value'];
?>'>
  <br /><a href='#clear' class='clearButton'>Clear signature</a>
</div>