Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active March 10, 2018 17:36
Show Gist options
  • Save anthonybudd/2c68b3d69506443de6b3173f9bf44682 to your computer and use it in GitHub Desktop.
Save anthonybudd/2c68b3d69506443de6b3173f9bf44682 to your computer and use it in GitHub Desktop.
<?php
/*
Template Name: Contact Page
*/
?>
<form action="<?= ContactFormAction::url() ?>" method="post" enctype="multipart/form-data">
<input type="hidden" name="from_action" value="<?= ContactFormAction::getActionName() ?>">
<input type="text" name="full_name"><br />
<input type="email" name="email"><br />
<textarea name="message" cols="30" rows="10"></textarea>
<input type="submit" value="Submit">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment