Initial checkin
This commit is contained in:
commit
d75eb444fc
4304 changed files with 369634 additions and 0 deletions
|
@ -0,0 +1,38 @@
|
|||
<h1>Kontaktformular</h1>
|
||||
{$emsg}
<form action="/index.php?task=contact" method="post">
|
||||
<table border="0" align="center" width="450">
|
||||
<tr>
|
||||
<td align="left">Name:</td>
|
||||
<td align="right"><input type="text" value="{$post.name}" name="name" size="35" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">Email:</td>
|
||||
<td align="right"><input type="text" value="{$post.email}" name="email" size="35" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">Betreff:</td>
|
||||
<td align="right"><input type="text" value="{$post.subject}" name="subject" size="35" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" valign="top">Nachricht:</td>
|
||||
<td align="right"><textarea name="message" cols="40" rows="12">{$post.message}</textarea></td>
|
||||
</tr>
|
||||
{if $captcha==1}
|
||||
<tr>
|
||||
<td align="left" valign="top">Captcha:</td>
|
||||
<td align="right"><img src="{$path}thirdparty/securimage/securimage_show.php?sid={$sid}" id="image" align="absmiddle" /><br /><a href="#" onclick="document.getElementById('image').src = '{$path}thirdparty/securimage/securimage_show.php?sid=' + Math.random(); return false"><img src="{$path}themes/default/images/icons/arrow_refresh.png" alt="Refresh" /></a> <a href="{$path}thirdparty/securimage/securimage_play.php" style="font-size: 13px"><img src="{$path}themes/default/images/icons/sound.png" alt="Sound" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" valign="top">Captcha eingeben:</td>
|
||||
<td align="right"><input type="text" name="captcha" size="15" maxlength="15" /></td>
|
||||
</tr>
|
||||
{/if}
|
||||
<tr>
|
||||
<td align="center" colspan="2">
|
||||
<input type="submit" name="submit" value="Senden" />
|
||||
<input type="reset" value="Löschen" /><br />
|
||||
Alle Felder sind Pflichtfelder!
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue