fboard/fboard/register/index.php

17 lines
587 B
PHP

<!DOCTYPE html>
<html>
<body>
<h1>Register new user</h1>
<p>You might want to review the source code of fBoard before you register</p>
<?php $script = "../etc/cgi/register.php"; //script location
?>
<form action="<?php echo $script; ?>" method="post">
User name: <input type="text" name="username" required><br>
Full name: <input type="text" name="full_name"><br>
Email: <input type="text" name="email"><br>
Password: <input type="password" name="password" required><br>
Verify password: <input type="password" name="password2" required><br>
<input type="submit">
</form>
</body></html>