13 lines
418 B
HTML
13 lines
418 B
HTML
<form method="POST">
|
|
<?php wp_nonce_field('action_name', 'nonce_name'); ?>
|
|
<div>
|
|
<input type="checkbox" id="calculation_patch" name="calculation" checked />
|
|
<label for="calculation_patch">calculation patch</label>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" id="hide_show_elements" name="hide_show" />
|
|
<label for="hide_show_elements">hide/show elements</label>
|
|
</div>
|
|
<input type="submit" value="send"/>
|
|
</form>
|