Simple Registration Page
Posted: Sat Apr 22, 2023 4:51 am
Since there is no tutorial on how to make registration and you are having hard time like me. Here you go
Sample
Enter Codes
Enter Config
Item will be visible for
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