ExploreWeb Posted January 7, 2021 Share Posted January 7, 2021 Can I create my own Login and Sign Up form for my users? I'd Love to do that! Quote Link to comment Share on other sites More sharing options...
AwesomeTech Posted January 7, 2021 Share Posted January 7, 2021 Yeah! You Can Create Or you can use Project Logged Login Pages Or Einet Anake or BoxBilling Quote Link to comment Share on other sites More sharing options...
uHost Posted January 8, 2021 Share Posted January 8, 2021 (edited) Hi @ExploreWeb Yes! You can create custom login and signup pages. You may edit the default pages as per your wish. Or you can create a custom clientarea like infinityfree or profreehost by which you can gain complete control over your design. ? Edited January 8, 2021 by uHost Quote Link to comment Share on other sites More sharing options...
Nabeel Posted January 8, 2021 Share Posted January 8, 2021 (edited) you can create your own sign up page with html & css and php and in the form add <form method=post action="https://order.<?php echo $yourdomain?>/register2.php"> and for captcha use this link https://ifastnet.com/image.php (because https is enabled on this domain and also because order.yourdomain.tld [whatever your domain is] does not have a ssl certificate ) example <td style="text-align: left;" colspan="21"> <font size="-1"><span style="font-family: Helvetica,Arial,sans-serif;"> <form method=post action="https://order.<?php echo $yourdomain?>/register2.php"> <table> <tr><th style="text-align: left;">Username<td><input type=text name=username size=30 value="" maxlength="16" onkeyup="return ismaxlength(this)"> <tr><th> <td> <tr><th style="text-align: left;">Password<td><input type=password name=password size=30 maxlength="25" onkeyup="return ismaxlength(this)"> <tr><th> <td> <tr><th style="text-align: left;">Email Address<td><input type=text name=email size=30 value=""> <tr><th style="text-align: left;"><td> <tr><th> <td> <tr><th style="text-align: left;">Site Category<td><select size="1" name="website_category"> <option>Personal</option> <option>Business</option> <option>Hobby</option> <option>Forum</option> </select> </td> <tr><th style="text-align: left;"><td> <tr><th> <td> <tr><th style="text-align: left;">Site Language<td> <select size="1" name="website_language"> <option>English</option> <option>Non-English</option> </select> </td> <tr><th> <td> <input type=hidden name=id value="<?PHP echo $id; ?>"> <tr><th style="text-align: left;">Security Code<td><img src="nk https://ifastnet.com/image.php?id=<?PHP echo $id; ?>"> <tr><th> <td> <tr><th style="text-align: left;">Enter Security Code<td><input type=text name=number size=30> <tr><th> <td> <tr><th colspan=2><input type=submit value="Register" name=submit> </table> </form> Edited January 8, 2021 by Nabeel Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.