Simple Login Page Code

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

Simple Login Page Code

Post by nischal »

Sample
Image

Enter Code:

Code: Select all

<form method="post">
Username:<br/>
<input type="username" name="user" maxlength="100" class="textbox" required/><br/>
Password:<br/>
<input type="password" name="pass" minlength="8" maxlength="32" class="textbox" required/><br/>
<input type="checkbox" name="autologin" value="true"/>Enable automatic login<br/>
<input type="submit" name="login" value="Submit" class="button"/>
</form>
Enter Config:

Code: Select all

<username>#%POST(user)%#</username>
<password>#%POST(pass)%#</password>
<autologin>#%POST(autologin)%#</autologin>
<error>#%POST(error)%#</error>
<url>/index.html</url>
Item will be visible for:
VISITOR
Thats It :)
Post Reply