Menu

[r1]: / php / create-account.php  Maximize  Restore  History

Download this file

20 lines (13 with data), 426 Bytes

 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>