Changeset 101 for trunk/bb-templates/post-form.php
- Timestamp:
- 04/30/2005 06:59:31 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-templates/post-form.php
r89 r101 1 1 2 2 <form class="postform" method="post" action="<?php option('uri'); ?>bb-post.php"> 3 <?php if ( is_forum() ) : ?>3 <?php if ( is_forum() || is_tag() ) : ?> 4 4 <p>Before posting a new topic, <a href="<?php option('uri'); ?>search.php">be sure to search</a> to see if one has been started already.</p> 5 5 <p> 6 <label>Topic :<br />7 <input name="topic" type="text" id="topic" size="50" maxlength="80" />6 <label>Topic title: (be brief and descriptive)<br /> 7 <input name="topic" type="text" id="topic" size="50" maxlength="80" tabindex="1" /> 8 8 </label> 9 9 </p> 10 10 <?php endif; ?> 11 11 <p><label>Post:<br /> 12 <textarea name="post_content" cols="50" rows="8" id="post_content" ></textarea>12 <textarea name="post_content" cols="50" rows="8" id="post_content" tabindex="2"></textarea> 13 13 </label> 14 14 </p> 15 <?php if ( is_forum() || is_tag() ) : ?> 16 <p>Enter a few words (called <a href="<?php tag_page_link(); ?>">tags</a>) separated by spaces to help someone find your topic:<br /> 17 <input name="tags" type="text" size="50" maxlength="100" value="<?php tag_name(); ?> " tabindex="3" /> 18 </p> 19 <?php endif; ?> 20 <?php if ( is_tag() ) : ?> 21 <p>Pick a section:<br /> 22 <?php forum_dropdown(); ?></p> 23 <?php endif; ?> 15 24 <p class="submit"> 16 <input type="submit" name="Submit" value="Send Post »" />25 <input type="submit" name="Submit" value="Send Post »" tabindex="6" /> 17 26 <?php if ( is_forum() ) : ?> 18 27 <input type="hidden" name="forum_id" value="<?php forum_id(); ?>" />
Note: See TracChangeset
for help on using the changeset viewer.