Forked from igmoweb/fictizia-new-client-form.php
Last active
August 29, 2015 14:24
-
-
Save UlisesGascon/b5f5244d974ebf95ff07 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
<form action="" method="POST"> | |
<table class="form-table"> | |
<tr> | |
<th scope="row"><?php _e( 'New customer', 'fictizia' ); ?></th> | |
<td> | |
<input type="text" name="cliente" value=""/> | |
</td> | |
</tr> | |
</table> | |
<?php wp_nonce_field( 'add-new-client' ); ?> | |
<?php submit_button( null, 'primary', 'add-new-client' ); ?> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment