1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/application/frontend/skin/developer/components/field/field.email.tpl
2014-10-18 13:07:45 +07:00

11 lines
255 B
Smarty

{**
* E-mail
*}
{extends './field.text.tpl'}
{block 'field_options' append}
{$name = $name|default:'mail'}
{$label = $label|default:{lang name='field.email.label'}}
{$_rules = array_merge([ 'required' => true, 'type'=> 'email' ], $_rules)}
{/block}