Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<html> <head> <title>Sign up for Freestacks</title> </head> <body> <form name="signup-form" action="../database-access/signup-handler.php" method="post"> Desired User Name <input name="user-name" type="text"/><br> Enter Password <input name="password" type="password"/><br> Verify Password <input name="password" type="password"/><br> <input type="submit" value="Sign Up"/> </form> </body> </html>