mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 12:03:21 +01:00
98 lines
3.1 KiB
HTML
98 lines
3.1 KiB
HTML
<!-- INCLUDE overall_header.html -->
|
|
|
|
<!-- $Id$ -->
|
|
|
|
<script language="JavaScript" type="text/javascript">
|
|
<!--
|
|
|
|
function checkForm(formObj) {
|
|
return;
|
|
|
|
formErrors = false;
|
|
|
|
if (formObj.message.value.length < 2) {
|
|
formErrors = "{L_EMPTY_MESSAGE_EMAIL}";
|
|
}
|
|
else if ( formObj.subject.value.length < 2)
|
|
{
|
|
formErrors = "{L_EMPTY_SUBJECT_EMAIL}";
|
|
}
|
|
|
|
if (formErrors) {
|
|
alert(formErrors);
|
|
return false;
|
|
}
|
|
}
|
|
//-->
|
|
</script>
|
|
|
|
<div id="pagecontent">
|
|
|
|
<form action="{S_POST_ACTION}" method="post" name="post" onsubmit="return checkForm(this)"><table class="tablebg" width="100%" cellspacing="1">
|
|
<tr>
|
|
<th colspan="2">{L_SEND_EMAIL}</th>
|
|
</tr>
|
|
<!-- IF ERROR_MESSAGE -->
|
|
<tr>
|
|
<td class="row3" colspan="2" align="center"><span class="error">{ERROR_MESSAGE}</span></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<!-- IF S_SEND_USER -->
|
|
<tr>
|
|
<td class="row1" width="35%"><b class="genmed">{L_RECIPIENT}</b></td>
|
|
<td class="row2" width="65%"><b class="genmed">{USERNAME}</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="35%"><b class="genmed">{L_SUBJECT}</b></td>
|
|
<td class="row2"><input class="post" type="text" name="subject" size="50" maxlength="100" tabindex="2" value="{SUBJECT}" /></td>
|
|
</tr>
|
|
<!-- ELSE --->
|
|
<tr>
|
|
<td class="row1" width="35%"><b class="genmed">{L_EMAIL_ADDRESS}</b></td>
|
|
<td class="row2"><input class="post" type="text" name="email" size="50" maxlength="100" value="{EMAIL}" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="35%"><b class="genmed">{L_REAL_NAME}</b></td>
|
|
<td class="row2"><input class="post" type="text" name="name" size="50" maxlength="100" value="{NAME}" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="35%"><b class="genmed">{L_DEST_LANG}</b><br /><span class="gensmall">{L_DEST_LANG_EXPLAIN}</span></td>
|
|
<td class="row2"><select name="lang">{S_LANG_OPTIONS}</select></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<tr>
|
|
<td class="row1" valign="top"><b class="genmed">{L_MESSAGE_BODY}</b><br /><span class="gensmall">{L_EMAIL_BODY_EXPLAIN}</span></td>
|
|
<td class="row2"><textarea class="post" name="message" rows="15" cols="76" tabindex="3">{MESSAGE}</textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" valign="top"><span class="gen"><b>{L_OPTIONS}</b></span></td>
|
|
<td class="row2"><table cellspacing="0" cellpadding="1" border="0">
|
|
<tr>
|
|
<td><input type="checkbox" name="cc_email" value="1" checked="checked" /></td>
|
|
<td class="gen">{L_CC_EMAIL}</td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cat" colspan="2" height="28" align="center"><input type="submit" tabindex="6" name="submit" class="btnmain" value="{L_SEND_EMAIL}" /></td>
|
|
</tr>
|
|
</table></form>
|
|
|
|
</div>
|
|
|
|
<br clear="all" />
|
|
|
|
<table class="tablebg" width="100%" cellspacing="1" cellpadding="0">
|
|
<tr>
|
|
<td class="row1">
|
|
<p class="breadcrumbs"><a href="{U_INDEX}">{L_INDEX}</a><!-- BEGIN navlinks --> » <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></p>
|
|
<p class="datetime">{S_TIMEZONE}</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<br clear="all" />
|
|
|
|
<div style="float: right;"><!-- INCLUDE jumpbox.html --></div>
|
|
|
|
<!-- INCLUDE overall_footer.html --> |