Created
February 27, 2016 17:50
-
-
Save mrbobbybryant/bc24775ee78675d8cc33 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style="width: 70%; margin: 0 auto;"> | |
<form id="user-post"> | |
<?php wp_nonce_field( basename( __FILE__ ), 'user-submitted-question' ) ?> | |
<input type="text" id="user-name" name="user-name" placeholder="Name" style="margin-bottom: 10px;"> | |
<input type="text" id="user-email" name="user-email" placeholder="Email" style="margin-bottom: 10px;"> | |
<select name="product" id="product" style="margin-bottom: 10px;"> | |
<option value=""></option> | |
<option value="hosting">Hosting</option> | |
<option value="themes">Themes</option> | |
<option value="plugins">Plugins</option> | |
<option value="custom-dev">Custom Development</option> | |
</select> | |
<label for="user-entry-content">Write Your Question Here:</label> | |
<textarea name="user-entry-content" id="user-entry-content" cols="30" rows="10" style="margin-bottom: 10px;"></textarea> | |
<input type="text" id="xyq" name="<?php echo apply_filters( 'honeypot_name', 'date-submitted' ) ?>" value="" style="display: none"> | |
<input type="submit" id="user-submit-button" value="Submit Post"> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment