Skip to content

Instantly share code, notes, and snippets.

@benmmurphy
Last active March 8, 2016 11:48
Show Gist options
  • Save benmmurphy/3679716fbf3d46f1cc81 to your computer and use it in GitHub Desktop.
Save benmmurphy/3679716fbf3d46f1cc81 to your computer and use it in GitHub Desktop.
Phone Number Verification Form
<form method="POST" action="/number_verify.php" id="verify_form">
<input id="msisdn" type="text" name="msisdn" />
<input type="submit" value="Send Token"/>
<div id="number_error" style="<?php echo $error == "number" ? 'display:block' : '';?>">Invalid Number</div>
<?php
if ($error == "generic") {
?>
<div id="generic_error">
There was an error sending your token
</div>
<?php
}
?>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment