captcha-demo.htm
1: <html>
2: <head>
3: <title> PHP CAPTCHA Demo </title>
4: </head>
5:
6: <body>
7: <h1> PHP CAPTCHA Demo </h1>
8:
9: <form method="post" action="captcha-validate.php">
10:
11: <h2> Register for a new account: </h2>
12:
13: <p>Name: <input type="input" name="name"></p>
14:
15: <p>
16: <img src="visual-captcha.php" width="200" height="60" alt="Visual CAPTCHA">
17: </p>
18:
19: <p>Enter the text from the above image: <input name="user_code" type="input"></p>
20:
21: <p>
22: <a href="audio-captcha.php">
23: Can't see the image? Click for audible version</a>
24: </p>
25:
26: <p> <input type="submit"> </p>
27:
28: </form>
29:
30: </body></html>