-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.tpl
More file actions
62 lines (47 loc) · 1.58 KB
/
contact.tpl
File metadata and controls
62 lines (47 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{include file="$template/pageheader.tpl" title=$LANG.contacttitle desc=$LANG.contactheader}
{if $sent}
<div class="alert alert-success">
<strong>{$LANG.contactsent}</strong>
</div>
{else}
{if $errormessage}
<div class="alert alert-danger">
{$LANG.clientareaerrors}
<ul>
{$errormessage}
</ul>
</div>
{/if}
<form method="post" action="contact.php?action=send">
<div class="form-group">
<label for="name">{$LANG.supportticketsclientname}</label>
<input class="form-control" type="text" name="name" id="name" value="{$name}" />
</div>
<div class="form-group">
<label for="email">{$LANG.supportticketsclientemail}</label>
<input class="form-control" type="text" name="email" id="email" value="{$email}" />
</div>
<div class="form-group">
<label for="subject">{$LANG.supportticketsticketsubject}</label>
<input class="form-control" type="text" name="subject" id="subject" value="{$subject}" />
</div>
<div class="form-group">
<label for="message">{$LANG.contactmessage}</label>
<textarea name="message" id="message" rows="12" class="form-control">{$message}</textarea>
</div>
{if $capatacha}
<p><strong> » {$LANG.captchatitle}</strong></p>
<p>{$LANG.captchaverify}</p>
{if $capatacha eq "recaptcha"}
<div>{$recapatchahtml}</div>
{else}
<p><img src="includes/verifyimage.php" align="middle" /> <input type="text" class="input-small" name="code" size="10" maxlength="5" /></p>
{/if}
{/if}
<hr />
<input type="submit" value="{$LANG.contactsend}" class="btn btn-primary" />
</form>
{/if}
<br />
<br />
<br />