First of all, If you're thinking this is leeched or w.e, get out.. lol this is for the people that don't know how to. Anything that needs to be edited will be in a Different Color.
Editing Host:
Things need:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...] (Optional)
Color Chart : [Only registered and activated users can see links. Click Here To Register...]
Step 1: Download the Register Page without CAPTCHA.
Step 2: Open Register.php with a Text Editor.
Step 3: See where it says
Edit it.
Step 4: Copy and Paste in your Directory. And done lol
Editing the Body:
Step 1: Edit the Title, Its in <title>Account Registration</title>. Type anything inside the <title> Tags.
Step 2: Next thing you want to edit is the Title on the actual Page.
Step 3: Edit the User Name (Optional)
And so on with the others ( Password, Retype Password, Email). REMOVE Email IF YOU DONT HAVE THAT COLUMN IN ACCOUNT DB. It don't matter but just to make things clear.
Do not edit After this:
UNLESS YOU KNOW WHAT YOU'RE DOING.
Extra Things:
Icon
*
Add that right before <head> tags
Background
*
Change the Red Font to get your own things.
Congratz! You've made a Register Page with no Recaptcha code AND You've Learned HTML :D
Credits:
Grandalio -> Released the Script
Spongebox -> Made the Guide..
Any questions? Reply below.. Again, I didn't Leech, Lol
Editing Host:
Things need:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...] (Optional)
Color Chart : [Only registered and activated users can see links. Click Here To Register...]
Step 1: Download the Register Page without CAPTCHA.
Step 2: Open Register.php with a Text Editor.
Step 3: See where it says
PHP Code:
<?
$myhost="localhost";
$mypass="test"; //your server login password
$myuser="root"; //your server login username
$mydbacc="account"; //your server account database
$mydbdata="my"; //your server my database name
$serverport=3306; //your server connection port
$mydb="my"; //your server my database
// Dont Edit after this
mysql_connect($myhost,$myuser,$mypass);
mysql_select_db($mydb);
?>
Step 4: Copy and Paste in your Directory. And done lol
Editing the Body:
Step 1: Edit the Title, Its in <title>Account Registration</title>. Type anything inside the <title> Tags.
Step 2: Next thing you want to edit is the Title on the actual Page.
Code:
<?php echo "[COLOR="Red"]Welcome to Our Account Registration[/COLOR]"; ?> [COLOR="Red"]Account Registration[/COLOR]
Code:
<TR>
<TD align="left" height="32"><b>[COLOR="Red"]UserID:[/COLOR]</b></TD>
<TD class=it3 height="32">
<INPUT class=it style="FONT-SIZE: 9pt; font-weight:700" name="id" id="id"><b>
</b> </TR>
Do not edit After this:
PHP Code:
<?php
if($_POST['B1'])
{
mysql_select_db($mydbacc);
$userid = trim($_POST['id']);
$password=trim($_POST['pass']);
$passretype=trim($_POST['retpass']);
$hash=$_POST['hash'];
if($password != $passretype) {
echo "Password not equal to Retyped Password.";
}else{
if(!ereg("^[0-9a-zA-Z]{4,12}$",$password))
{
echo "Only letters or numbers, length of 4 to 12 characters";
}
else
{
$res = mysql_query("select * from account where name = '".$userid."' order by id desc");
if(mysql_num_rows($res) == 0)
{
mysql_query("insert into account (name,Password,Reg_date) values ('".$userid."','".$hash."','".date("y-m-d H:i:s", time())."')");
echo "Account registered successfully.";
}
else
{
echo "Account Already exists in database.";
}
}
}
}
?>
Extra Things:
Icon
*
Code:
<link REL="SHORTCUT ICON" HREF="[COLOR="Red"]LinkHere[/COLOR]">
Background
*
Code:
Delete --> <body bgcolor="#000000" text="#FFFFFF">
Code:
add -->> <body background=[COLOR="Red"]THEURL[/COLOR] text="[COLOR="Red"]red[/COLOR]">
Congratz! You've made a Register Page with no Recaptcha code AND You've Learned HTML :D
Credits:
Grandalio -> Released the Script
Spongebox -> Made the Guide..
Any questions? Reply below.. Again, I didn't Leech, Lol