Author Topic: simple login script  (Read 7030 times)

Offline secondsun

  • Newbie
  • *
  • Posts: 3
simple login script
« on: February 14, 2008, 03:52:23 PM »
i need a simple script to put the login prompt into my html/php page.
after typing the login-data the script should redirect to roundcube-login/roundcube-root.

any idea?

thanx

Offline secondsun

  • Newbie
  • *
  • Posts: 3
Re: simple login script
« Reply #1 on: February 20, 2008, 06:31:46 AM »
Code: [Select]
<form action=&quot;url_to_roundcube-login&quot; method=&quot;post&quot; name=&quot;rcLogin&quot; id=&quot;rcLogin&quot;>
    <input name=&quot;_action&quot; type=&quot;hidden&quot; value=&quot;login&quot;>
    E-Mail: <input name=&quot;_user&quot; type=&quot;text&quot;><br />
    Password: <input name=&quot;_pass&quot; type=&quot;password&quot;><br />
    <center><input name=&quot;button&quot; type=&quot;Submit&quot; value=&quot;Login&quot;></center>
</form>

this one works. thanx