mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
Started on posting.php, got the logic done for displaying the new topic form
git-svn-id: file:///svn/phpbb/trunk@83 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
18
phpBB/templates/Default/newtopic_header.tpl
Normal file
18
phpBB/templates/Default/newtopic_header.tpl
Normal file
@@ -0,0 +1,18 @@
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" align="right" width="20%" bgcolor="#000000" cellpadding="0" cellspacing="1">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" width="100%" bgcolor="#CCCCCC" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td align="center" style="{font-size: 8pt;}">
|
||||
{L_POSTNEWIN}<br>
|
||||
<a href="viewforum.{PHPEX}?forum_id={FORUM_ID}">{FORUM_NAME}</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
47
phpBB/templates/Default/posting_body.tpl
Normal file
47
phpBB/templates/Default/posting_body.tpl
Normal file
@@ -0,0 +1,47 @@
|
||||
<tr>
|
||||
<td><form action="posting.{PHPEX}" method="POST">
|
||||
<table border="0" align="center" width="100%" bgcolor="#000000" cellpadding="0" cellspacing="1">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" width="100%" cellpadding="3" cellspacing="1">
|
||||
<tr class="tablebody">
|
||||
<td bgcolor="#DDDDDD" width="15%">{L_ABOUTPOST}</td>
|
||||
<td bgcolor="#CCCCCC">{ABOUT_POSTING}</td>
|
||||
</tr>
|
||||
<tr class="tablebody">
|
||||
<td bgcolor="#DDDDDD">{L_USERNAME}</td>
|
||||
<td bgcolor="#CCCCCC">{USERNAME_INPUT}</td>
|
||||
</tr>
|
||||
<tr class="tablebody">
|
||||
<td bgcolor="#DDDDDD">{L_PASSWORD}</td>
|
||||
<td bgcolor="#CCCCCC">{PASSWORD_INPUT}</td>
|
||||
</tr>
|
||||
<tr class="tablebody">
|
||||
<td bgcolor="#DDDDDD">{L_SUBJECT}</td>
|
||||
<td bgcolor="#CCCCCC">{SUBJECT_INPUT}</td>
|
||||
</tr>
|
||||
<tr class="tablebody">
|
||||
<td bgcolor="#DDDDDD">{L_MESSAGEBODY}<br><br>
|
||||
{HTML_STATUS}<br>{BBCODE_STATUS}</td>
|
||||
<td bgcolor="#CCCCCC">{MESSAGE_INPUT}</td>
|
||||
</tr>
|
||||
<tr class="tablebody">
|
||||
<td bgcolor="#DDDDDD">{L_OPTIONS}</td>
|
||||
<td bgcolor="#CCCCCC">
|
||||
{HTML_TOGGLE}<br>{BBCODE_TOGGLE}<br>{SMILE_TOGGLE}<br>{SIG_TOGGLE}<br>{NOTIFY_TOGGLE}</td>
|
||||
</tr>
|
||||
<tr class="tableheader">
|
||||
<td align="center" colspan="2">
|
||||
<input type="hidden" name="mode" value="{MODE}">
|
||||
<input type="hidden" name="forum_id" value="{FORUM_ID}">
|
||||
<input type="hidden" name="topic_id" value="{TOPIC_ID}">
|
||||
<input type="submit" name="preview" value="{L_PREVIEW}">
|
||||
<input type="submit" name="submit" value="{L_SUBMIT}">
|
||||
<input type="submit" name="cancel" value="{L_CANCEL}"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form></td>
|
||||
</tr>
|
Reference in New Issue
Block a user