Simple Registration Page

Share your ideas & teach other
Post Reply
nischal
Posts: 2
Joined: Fri Apr 21, 2023 3:08 pm

Simple Registration Page

Post 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
Naruto01
Posts: 1
Joined: Tue Aug 08, 2023 4:17 am

Re: Simple Registration Page

Post by Naruto01 »

Do I Create a new page named login or do I click on the login page button below?
Post Reply