// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
public_html
/
wp-contentmmm
/
themes
/
vega
/
templates
[ PARENT ]
EDIT :: comments-form.php
<?php if ('open' == $post->comment_status) : ?> <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?> <p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p><br/> <?php else : ?> <!-- Start of form --> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform" class="comment_form"> <fieldset> <h6 class="cufon"><?php _e( 'Leave A Reply', THEMEDOMAIN ); ?></h6> <?php if ( is_user_logged_in() ) : ?> Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out »</a><br/><br/> <?php else : ?> <br/> <input class="round m input" title="<?php _e( 'Name (required)', THEMEDOMAIN ); ?>" name="author" type="text" id="author" value="" tabindex="1" style="width:96%" /> <br/> <input class="round m input" title="<?php _e( 'Email (required)', THEMEDOMAIN ); ?>" name="email" type="text" id="email" value="" tabindex="2" style="width:96%" /> <br/> <input class="round m input" title="<?php _e( 'Website', THEMEDOMAIN ); ?>" name="url" type="text" id="url" value="" tabindex="3" style="width:96%" /> <br/> <?php endif; ?> <br/> <textarea name="comment" title="<?php _e( 'Message', THEMEDOMAIN ); ?>*" cols="40" rows="3" id="comment" tabindex="4" style="width:96%"></textarea> <br /> <p> <input name="submit" type="submit" id="submit" value="<?php _e( 'Submit', THEMEDOMAIN ); ?>" tabindex="5" /> <?php cancel_comment_reply_link("Cancel Reply"); ?> </p> <?php comment_id_fields(); ?> <?php do_action('comment_form', $post->ID); ?> </fieldset> </form> <!-- End of form --> <?php endif; // If registration required and not logged in ?> <?php endif; // if comment is open ?>
SAVE
CANCEL