Jump to content

mnm

Members
  • Posts

    5
  • Joined

  • Last visited

mnm's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Nobody?Cant be that hard ... instead of passing username+password to a html page I need to pass it to an iframe within an html page... I am sure there must be a simple way....
  2. Hi,Thanks for replying.No both logs the user in the same place!! only one application.Well the username+password on my homepage and the username+password from the Iframe will log the user into the same application. So regardless of where they type in their credentials they will be logged in to the same application.I dont know if this changes the answer you gave me.I am not sure if I really kow how to do any of your recommandations :)Can there be a simpler answer?I mean right now, users can login from my homepage to the application with no problems.It seems that all I need to do is find a way to input whatever they type in (username + password) into the iframe on http://www.auswebserv.com/billing.htmlthe way it works now is:Scenario 1.on www.auswebserv.comthey type in username + passwordwhich in reality is inputting those on the page www.auswebserv.com/Billinguser login with no problem.but this is what i want ot achieve:Scenario 2. on www.auswebserv.comusers type in username + passwordwhich are passed through the iframe on www.auswebserv.com/billing.htmlusers are logged on using the iframe to the same application a in scenario 1.** basically the iframe in www.auswebserv.com/billing.html points to www.auswebserv.com/BillingSo basically instead of passign username+password to a html page I need to pass username + password to an iframe within a html page.I hope I am more clear now
  3. Anyone has any ideas?Is it even possible?
  4. Hi thanks for the quick reply.Anyway, this is how it is:1. On all my pages I have this form:<form name="frmMembers" action="login.html" method="post"><td width="39%"> <div> <p><nobr> <input type="text" name="email" size="10"><input type="hidden" name="r_email" value="Username"><input type="password" name="passed_password" size="10"><input type="hidden" name="r_passed_password" value="Account Password"><input type="submit" value="Login" name="btnSubmit"></nobr><nobr> </nobr></p></div></td></form>This will submit the username + password to a login.html page (which is a billing system). The user will automatically be logged in to the billing system.So the form works 100%.2. Rather than going this way (which gives me the billing system ugly html), in order to keep my site look (header, footer, color) I created a template which the body displays the real billig system login via:<iframe id="frame" name="frame" src="login.html" width="963" height="1100" border="0"></iframe>3. What I want to achieve is after the users type in username + password to be redirected to the template page which I created and passon the credentials on that page but to the Iframe bit.Here is the requested link:http://www.auswebserv.comyou can find in there the username and password form.http://www.auswebserv.com/billing.htmlthis is what I want to achieve - EXECEPT that users will not be promted by the login page for the billing system they will already be logged in.Should I post more code? But I dont think the rest is relevant as is HTML and nothing to do with m form and the iframe statement.Thanks for helping again.
  5. Hi everyone,I am a beginner in such a way that so far I only know what I need.Anyway I have build a html file which has a form statement in it:<form name="frmMembers" action="login.html" method="post"> <td width="39%"> <div> <p><nobr> <input type="text" name="email" size="10"> <input type="hidden" name="r_email" value="Username"> <input type="password" name="passed_password" size="10"> <input type="hidden" name="r_passed_password" value="Account Password"> <input type="submit" value="Login" name="btnSubmit"> </nobr><nobr> </nobr></p> </div></td> </form>This works fine. I can have the users on ALL my pages type in thier username + password and they will be logged in.However, i want to chnage a bit the way this works. I created a new login.html page (newlogin.html) which calls the original login.html via an IFRAME statement:<iframe id="frame" name="frame" src="login.html" width="963" height="1100" border="0"></iframe>This page works fine (it loads up fine and the iframe is there as needed).Anyway here is my problem:I can not find a way to input the username + password my users are typing in the from on my new page (newlogin.html) to the IFRAME part.So what I am looking to achieve is:users are typing username + password on any of my pages, which calls newlogin.html and passes on the username + password to the page in the IFRAME statement.I have searched and searched but I can not find an answer to my problem.I would appreciate if any of you more experienced guys can help me solve this problem.Thanks.
×
×
  • Create New...