Files
redline.com.pl/modules/freshmail/views/templates/hook/form.tpl
2024-11-11 18:46:54 +01:00

15 lines
1.0 KiB
Smarty
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class='box'>
<h1 class="page-subheading">Newsletter</h1>
<p class="info-title">Get our products/news earlier than others, lets get in touch.</p>
<form method="post" class="std">
{foreach from=$fields key=k item=v}
<div class="{if !empty($v.require_field)}required{/if} form-group">
<label for="tag[{$v.tag}]">{if empty($v.displayname)}{$v.name}{else}{$v.displayname}{/if} {if !empty($v.require_field)}<sup>*</sup>{/if}</label>
<input class="{if !empty($v.require_field)}is_required{/if} validate form-control" type="text" name="tag[{$v.tag}]" id="{$v.tag}" placeholder="{if empty($v.displayname)}{$v.name}{else}{$v.displayname}{/if}">
</div>
{/foreach}
<input type="hidden" name="list" value="{$fields[0].hash_list}" />
<input type="submit" class="subscribenow" name="submit_freshmail" value="{$label_submit}">
<input type="hidden" name="action" value="0" />
</form>
</div>