Page 1 of 1

Simple Registration Page

Posted: Sat Apr 22, 2023 4:51 am
by nischal
Since there is no tutorial on how to make registration and you are having hard time like me. Here you go :)

Sample
Image

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>
Enter Config

Code: Select all

<username>#%POST(user)%#</username>
<email>#%POST(email)%#</email>
<password>#%POST(password)%#</password>
<error>#%POST(error)%#</error>
<url>/index.html</url>
Item will be visible for
Visitor

Re: Simple Registration Page

Posted: Wed Oct 11, 2023 5:20 am
by Naruto01
Do I Create a new page named login or do I click on the login page button below?