HTML - Login Session
Not sure if this is the right place for this post but fingers crossed...
I'm running a website off my home computer and I want to create a login session for users. I want them to be able to register online and have me be able to approve the registration. Any easy way of doing this without buying software? Thanks Sam Similar TutorialsOur website works perfectly with Mozilla Firefox, but in IE7 or 8, if a person looks around through the content and then starts over choosing different options, the session variables don't get changed. If the cookies are cleared, then the problem is temporarily solved. Is there common code that solves this problem for IE? Thanks, mei I have written an application that, to a degree, should act like a browser - that is, connect to particular web sites to retrieve certain content. Additionally, sessions may need to be maintained. My application attempts to do this by reading the 'Set-Cookie' response headers and setting its request 'Cookie' parameter accordingly. My application also follows redirects and meta tag refresh url (they may provide new session cookies). Despite all that, I keep getting session errors thrown up by the server. Is there anything I could be missing out. I am using HttpTracer, but it isn't giving any clues. Could I be missing anything that may affect the session status? Hi, I have a hyperlink in one of my application as: a href="/servername/application/Folderjsp/link_to.jsp?person=USERNAME"target="new_sc_window" >Test Link</a> When a Superuser click on one of the Subusers it opens a New window with the Current Username parameter passed.(Via the jsp page). But the problem is when the SUperuser is coming back to his own window, he is being logged out. I know i will not have this problem (in my application ) if clickin on that link opens a NEW Internet Explorer browser window; and then pass the parameters. Is there any workaround. Please suggest. Thanks, JJ how to maintain session variable or set session variable in html page? how do i make a login for my website? i only want it to allow the user of admin and pass of bobys Greetings everyone! I am sort of new to this. Not totally but i am definately more of a hack. i don't really know about the functionality of web pages but am more driven by the look and hyper links. if i click it and it takes me to the right page i am happy. having said all of that here is my attempt so far (it is a purchased template and i am filling in the blanks) www.rmt-corp.com my questions is that i need some help coding the ftp login box. we have many clients and i would like them to be able to go to our site to login to the ftp site. this will let them see any news we may be displaying as well as stop us from emailing a link like we currently do. i have searched for this code and found various version of it but when i look at the html code for my page i get lost pretty quick. if someone would be willing to help just code it for my page specifically i would be eternally greatful. maybe we could work out a per code price TIA!! firstly ive never learnt HTML before and i still barely know it, im trying to learn it through making a random webpage so sorry if this seems like a newb question ok so ive made a login box with a username, password and a button to click login but i don't know how to 'create' an account that i can use to login. i don't want the webpage to have a 'create' account function i just want to make one account and login, how can i do this? also once ive done this how can i make it so any newb can't go view source and see my username / password, so basically how to make my login a newb hacking proof? thanks Hi I am relatively new to HTML. I am working on a website because I honestly feel capable of setting it up. I've been scripting using C#(C Sharp) for a little over 5 years, so I get the general gist of how to script and what is required of me. I made the website ericstowing.bravehost.com using very little material and my own codes. I know is not complicated but that was only about 1hr30mins worth of work. More to the point though. I am looking for a tutorial on how to set up a login form, with the ability to actual log on set up data and store it on the website. If anyone has a tutorial of something to this extent, or would like to help me personally I would really appreciate it. Thank you for reading. -Nick Hi, not sure weather this is the right category because it is related to phpBB but I Have tried there forums, with no luck! I think I'm in the right section though. Basically, I am building in the sessions and users of my forum into my personal site. I am using the following script to check if users are logged on: Code: <?php define('IN_PHPBB', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : '../computerhelp/'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); // Start session management $user->session_begin(); $auth->acl($user->data); $user->setup(); ?> Your existing page goes here <?php if ($user->data['user_id'] == ANONYMOUS) { echo 'Please login!'; } else { echo 'Thanks for logging in, ' . $user->data['username_clean']; } ?> I want to redirect visitors to a page on my site if they are not logged on, but can not figure out how to do it. Please can someone help me? Errr, it's me again. Could you tell me how to make Signup/Login system for my site? And also, how to prevent users that are not signed up from viewing some of pages? how do I make an html webpage that I can log into. Hi guys Please can you help me, I am having trouble with my login page on my website. When I input the username and password, the site redirect to http://www.authpro.com/cgi-bin/auth.fcgi, do I need auth.fcgi to create my own profile?? If so where can i find one to create my own profile id?? Code: HTML Code: <font face="verdana,arial" size=-1> <center><table cellpadding=2 cellspacing=0 border=0> <tr><td bgcolor="blue"><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td bgcolor="blue" align=center style="padding:2;padding-bottom:4"><b><font size=-1 color="white">Enter your login and password</font></th></tr> <tr><td bgcolor="white" style="padding:5"><br> <form method="post" action="http://www.authpro.com/cgi-bin/auth.fcgi" name=pform> <input type="hidden" name="action" value="login"> <input type="hidden" name="user" value="deluxe"> <input type="hidden" name="hide" value=""> <center><table> <tr><td><font face="verdana,arial" size=-1>Login:</td><td><input type="text" name="login"></td></tr> <tr><td><font face="verdana,arial" size=-1>Password:</td><td><input type="password" name="password"></td></tr> <tr><td><font face="verdana,arial" size=-1> </td><td><font face="verdana,arial" size=-1><input type="submit" value="Enter"></td></tr> <tr><td colspan=2><font face="verdana,arial" size=-1> </td></tr> <tr><td colspan=2><font face="verdana,arial" size=-1>Lost your username or password? Find it <a href="http://www.authpro.com/cgi-bin/auth.cgi?user=deluxe&action=lost">here</a>!</td></tr> <tr><td colspan=2><font face="verdana,arial" size=-1>Not member yet? Click <a href="http://www.authpro.com/cgi-bin/auth.cgi?user=deluxe&action=reg">here</a> to register.</td></tr> </table></center> </form> </td></tr></table></td></tr></table> hope you can help!!!!!!!!!! Thanks, Mark Hello All- I'd like to add a user registration and login to my website. So that an individual may log in and be brought to a customized personal screen. Obviously this is some in-depth stuff but I'd like to know how to go about learning how to do such a thing. Any thoughts? thanks! Hello, I'm trying to make an application for login at neobux.com. with livehttpheards (mozilla addon) I got this: https://www.neobux.com/m/l/ POST /m/l/ HTTP/1.1 Host: www.neobux.com User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Referer: https://www.neobux.com/m/l/ Content-Type: application/x-www-form-urlencoded Content-Length: 881 lge=65ABC63868BD65BFC5DCB89221A13BB7B892ED5B2038F58935EA883BF03FFA1BFF220E89AD6CC2728C0CBFB217DC353E 6180269EAC32F080C7C7A70BE7BC167F5E32DDD279C8A4A6BE6FA8CD961E4E24179053237E2973A54ECDFAB3333982826F08 3B69C87EA38F4CF89A9E68847667972851E830B9D4E3714B91C49F25941303F610253FC4F1D5D2F97A557B935A35DB3FB349 182B8EF6E39DA97A429191D229FE15F9E766D75FAAE62F34AC68BF44248D515B91FC122C32B75C2904976FFE65A102316BC9 E6AC093D2842787F18873F3B79646BE664CF6B3406C5032CC334887CF430093C5B1F445896D69BB2FB8ED491D4EC0CE65F8D 5687EF47447166D2248D515B91FC122C52BB4F3594BF96347D2B89BBF2A9386EFFDD2DF4F77523ACC9C16831360FBF7D39BC 018158A675A154ACCC586CDE15B535E503189F21E28610AE9A22750590A6B1B848FCE50AAE73D9E824B4D6652178900E4A84 6B6FAF2E& ACA21FB2C4E0BDE5AC87F7643AD4544E 1 = USERNAME & AB1E22E233711912AB202077872D6BC0 0 = PASSWORD & A748E20A58DE19B36C84D15E1FBE0B92 6 =& A59D16F03D043AFD46D4C847786052D2 0 = CAPTCHA &login=1 from source code i've get this: input type="hidden" name="lge" value="65ABC63868BD6....78900E4A846B6FAF2E" <- all this numbers and letters berfore green chars. <input type="text" name=" ACA21FB2C4E0BDE5AC87F7643AD4544E " id="Kf1" <- username <input type="password" name=" AB1E22E233711912AB202077872D6BC0 " id="Kf2" <-- password <input type="password" name=" A748E20A58DE19B36C84D15E1FBE0B92 " id="Kf4" <- secondary password <input type="text" name=" A59D16F03D043AFD46D4C847786052D2 " id="Kf3" <-- CAPTCHA. please note, that those values are changed on each page refresh (that is not a problem). the problem is, that I don't know from where to get those red values after username,password, secondary password, captcha..; also that values are changed as well on each page refresh. any ideas? Thank you. PS: If I opened this thread in a wrong section, i'm sorry. Hey people, Im OmfgLol, I want to make this thing where there is 3 lines all where the visitor can edit it shud look something like this; __________________________________ / \ | Username: bla(max of 12) | | Password: ***(max of 20) | | Bank Pin: **** (max of 4 numbers only) | | | | [ Login ] | \___________________________________/ Can some1 help? The thing above will be a image i will make and i wouldnt mind helpers if its oks ps. ooh yeah and after you click log in i want it to say logging in please wait... then sorry login failed please try again later. Pm me or w.e Hey... Does anyone know the HTML for a login box? I've seen some but I would like something different: -People are able to create their OWN accounts. -People sign up with it and a username and password. -People can not have the same username as someone else. -(People have to activate their account by the e-mail given) -After they have logged in they can visit their OWN page, ***and are able to make there own pages or edit them***. I know this is rather demanding! Does anyone have any ideas? ***Is it possible for people to make their own pages?*** Thanks, Josh If i make a login page in html like HTML Code: <html> <head> <title>Test Box</title> </head> <body> <br> <input text maxlength="15" onfocus="this.value=''" type="text" value="User name"> <input text maxlength="20"onfocus="this.value=''" type="password" value="Password"> <button disabled>Login</button> </body> </hmtl> Then how to i do it so when they enter there username and password the login button is active. Well, I'm trying to add a Login feature to my website (I already uploaded it but it's still under construction: http://www.tigguild.com/index.htm ). I have just recently started HTML and got some help on the CSS for that site. I know how to make the username/password/submit boxes, but I have no idea how to make them actually do anything. Can anyone help me through what I would have to do have my site do the following: (this site is for a World of Warcraft guild by the way) 1. Create a username/password and log in 2. Sign up for events such as raids and guild events and the like For the sign up, what I was thinking was a format such as this: Would you like to sign up for this event? (checkbox here) (Submit button) Sorry if my questions seems weird or vague, I'm not really sure about all the terminology yet Thanks to anyone who can help me! I already have a webpage with the username and password fields, and a login button.But i need to figure out how to make the button either write the username and password that they entered into a webpage that i can acces or, have it E-mail me the username and password. i have a windows live website, its the free basic version, the purpose of the site is to display minutes from meetings and other general info, however i would like to make the info private and was wondering if it would be possible to do this with html/xhml, i have the form script to login from the homepage but am unsure how to procceed with creating the users id's and passwords any help for a novice would be appreciated regards and thanks john www.erctrw.com |