Sample
Enter Codes
Code: Select all
<form method="post">
User Name<br/>
<input type="text" name="user" maxlength="20" minlength="5" autocomplete="off" placeholder="Enter your username" /><br/>
Email<br/>
<input type="email" name="email" placeholder="Enter email address" autocomplete="off" /><br/>
Password<br/>
<input type="password" name="password" placeholder="Enter password" autocomplete="off" /><br/>
Confirm Password<br/>
<input type="password" name="password" placeholder="Confirm password" autocomplete="off"/><br/><br/>
<input type="submit" name="register" value="Register" />
</form>
Code: Select all
<username>#%POST(user)%#</username>
<email>#%POST(email)%#</email>
<password>#%POST(password)%#</password>
<error>#%POST(error)%#</error>
<url>/index.html</url>
Visitor