bebeboutik/modules/contactform/provider.tpl

51 lines
1.9 KiB
Smarty
Raw Normal View History

2016-02-23 13:25:19 +01:00
<h1>{l s='Contact provider form' mod='contactform'}</h1>
2016-02-23 17:33:08 +01:00
<ul class="idTabs">
<li><a href="/modules/contactform/provider.php" class="selected">{l s='Provider' mod='invite'}</a></li>
<li><a href="/modules/contactform/press.php" >{l s='Press' mod='invite'}</a></li>
</ul>
<div class="sheets" style="padding: 20px 20px;">
<div id="idTab1">
2016-02-23 13:25:19 +01:00
<form action="/modules/contactform/provider.php" method="post">
2016-02-23 17:33:08 +01:00
2016-02-23 15:00:13 +01:00
<label for="brand">{l s='brand' mod='contactform'}*</label>
2016-02-23 13:25:19 +01:00
<input type="text" name="brand" id="brand">
2016-02-23 15:00:13 +01:00
<label for="compagny">{l s='compagny' mod='contactform'}*</label>
2016-02-23 13:25:19 +01:00
<input type="text" name="compagny" id="compagny">
2016-02-23 15:00:13 +01:00
<label for="lastname">{l s='lastname' mod='contactform'}*</label>
2016-02-23 13:25:19 +01:00
<input type="text" name="lastname" id="lastname">
2016-02-23 15:00:13 +01:00
<label for="firstname">{l s='firstname' mod='contactform'}*</label>
2016-02-23 13:25:19 +01:00
<input type="text" name="firstname" id="firstname">
2016-02-23 15:00:13 +01:00
<label for="function">{l s='function' mod='contactform'}*</label>
2016-02-23 13:25:19 +01:00
<input type="text" name="function" id="function">
2016-02-23 15:00:13 +01:00
<label for="email1">{l s='email' mod='contactform'}*</label>
2016-02-23 13:25:19 +01:00
<input type="text" name="email1" id="email1">
<label for="email2">{l s='email_other' mod='contactform'}</label>
<input type="text" name="email2" id="email2">
2016-02-23 15:00:13 +01:00
<label for="phone1">{l s='phone' mod='contactform'}*</label>
2016-02-23 13:25:19 +01:00
<input type="text" name="phone1" id="phone1">
<label for="phone2">{l s='phone_other' mod='contactform'}</label>
<input type="text" name="phone2" id="phone2">
2016-02-23 15:00:13 +01:00
<label for="purpose">{l s='purpose' mod='contactform'}*</label>
2016-02-23 13:25:19 +01:00
<input type="text" name="purpose" id="purpose">
2016-02-23 15:00:13 +01:00
<label for="content">{l s='content' mod='contactform'}*</label>
2016-02-23 17:33:08 +01:00
<textarea name="content" id="content"></textarea>
2016-02-23 13:25:19 +01:00
<input type="hidden" name="type" value="{Contactform::TYPE_PROVIDER}">
<button type="submit">{l s='send' mod='contactform'}</button>
</form>
2016-02-23 17:33:08 +01:00
</div>
2016-02-23 13:25:19 +01:00
</div>
2016-02-23 17:33:08 +01:00