MyBB Community Forums

Full Version: Register on a page off the forum.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
DONE MY SELF xD

How to make a registration page that is off the forum.

<html>

<head>
</head>

<body>
<form action="http://your_address/forums/member.php" method="post"> <!-- Make sure it is the url to the member.php page -->
Username: <input type="text" name="username" size="40" value="">
Password: <input type="password" name="password" size="20">
Re-enter Password: <input type="password" name="password2" size="20">
Email: <input type="text" name="email" size="20" maxlength="50" value="">
Re-enter email:<input type="text" name="email2" size="20" maxlength="50" value="">
<input type="submit" value="submit">
<input type="hidden" name="action" value="do_register">
</form>
</body>

</html>