GetSimple Support Forum
QUESTION Login to the website homepage - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Installation & Setup (http://get-simple.info/forums/forumdisplay.php?fid=5)
+--- Thread: QUESTION Login to the website homepage (/showthread.php?tid=17145)



Login to the website homepage - LogicPHP - 2024-01-13

How can I add the login page with "User" and "Password" to the main page of the website?


RE: Login to the website homepage - islander - 2024-01-13

(2024-01-13, 20:25:17)LogicPHP Wrote: How can I add the login page with "User" and "Password" to the main page of the website?

Although I have not personally tried this, you may want to take a look at the following plugin:
http://get-simple.info/extend/plugin/front-end-user-login-enhanced/809/

Let us know if it worked for you.


RE: Login to the website homepage - aurafx - 2024-03-12

Do you mean that you wish to have a login form for the admin / backend on the main page of your website?

if so its relativly easy to do, I have tested this on localhost and seems to work fine.

Code:
<form class="login" action="../pathto/admin/index.php?" method="post">
<p><b>Username:</b><br /><input type="text" class="text" id="userid" name="userid" /></p>
<p><b>Password:</b><br /><input type="password" class="text" id="pwd" name="pwd" /></p>
<p><input type="submit" name="submitted" class="submit" value="Login" /></p>
</form>