Last active
March 8, 2016 11:48
-
-
Save benmmurphy/3679716fbf3d46f1cc81 to your computer and use it in GitHub Desktop.
Phone Number Verification Form
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 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