summaryrefslogtreecommitdiff
path: root/templates/contact.tpl
diff options
context:
space:
mode:
authorbitweaver.org <bitweaver@users.sourceforge.net>2005-06-19 04:56:31 +0000
committerbitweaver.org <bitweaver@users.sourceforge.net>2005-06-19 04:56:31 +0000
commitdb60c85506a212d5eae4ffc6eecf43ece2a9b7f9 (patch)
tree441c9f624e4d6dd5beb28ce677c4955f5811022b /templates/contact.tpl
downloadmessages-db60c85506a212d5eae4ffc6eecf43ece2a9b7f9.tar.gz
messages-db60c85506a212d5eae4ffc6eecf43ece2a9b7f9.tar.bz2
messages-db60c85506a212d5eae4ffc6eecf43ece2a9b7f9.zip
IMPORT TikiPro CLYDE FINAL
Diffstat (limited to 'templates/contact.tpl')
-rw-r--r--templates/contact.tpl35
1 files changed, 35 insertions, 0 deletions
diff --git a/templates/contact.tpl b/templates/contact.tpl
new file mode 100644
index 0000000..757a142
--- /dev/null
+++ b/templates/contact.tpl
@@ -0,0 +1,35 @@
+<a class="pagetitle" href="{$gBitLoc.MESSU_PKG_URL}contact.php">{tr}Contact us{/tr}</a><br /><br />
+{if $gBitSystemPrefs.feature_messages eq 'y' and $bit_p_messages eq 'y'}
+{if $message}
+{$message}
+{/if}
+
+<h2>{tr}Send a message to us{/tr}</h2>
+ <form method="post" action="{$gBitLoc.MESSU_PKG_URL}contact.php">
+ <input type="hidden" name="to" value="{$contact_user|escape}" />
+ <table class="panel">
+ <tr>
+ <td>{tr}Priority:{/tr}</td><td>
+ <select name="priority">
+ <option value="1" {if $priority eq 1}selected="selected"{/if}>{tr}1 -Lowest-{/tr}</option>
+ <option value="2" {if $priority eq 2}selected="selected"{/if}>{tr}2 -Low-{/tr}</option>
+ <option value="3" {if $priority eq 3}selected="selected"{/if}>{tr}3 -Normal-{/tr}</option>
+ <option value="4" {if $priority eq 4}selected="selected"{/if}>{tr}4 -High-{/tr}</option>
+ <option value="5" {if $priority eq 5}selected="selected"{/if}>{tr}5 -Very High-{/tr}</option>
+ </select>
+ <input type="submit" name="send" value="{tr}send{/tr}" />
+ </td>
+ </tr>
+ <tr>
+ <td>{tr}Subject{/tr}:</td><td><input type="text" name="subject" value="" size="80" maxlength="255" /></td>
+ </tr>
+ <tr><td>&nbsp;</td>
+ <td><textarea rows="20" cols="80" name="body"></textarea></td>
+ </tr>
+</table>
+</form>
+{/if}
+{if strlen($email)>0}
+<h2>{tr}Contact us via email{/tr}</h2>
+{mailto address="$email" encode="javascript" text="click here to send us an email"}
+{/if}