HTML - Secured Username And Login
Hello, I am making a website for my school, and just recently I was asked to make a login section for students and for parents, (to view grades and reports on there children.) I have looked on the internet and it is very unclear to me on how I would go about doing this, How would I go about starting this up?
Similar TutorialsI'm trying to customize a template that has a username and password field, and I want it to be the login to my forum. Below is the code that I have, what do I need to edit? <div id="header"> <div id="userbar"> <form action="#"> <label for="username">Username:</label> <input type="text" id="username" name="user" size="20" /> <label for="password">Password:</label> <input type="password" id="password" name="pass" size="20" /> <input type="submit" value="Login" id="login" /> </form> From what I can tell from the program I'm using, this code below is the Login Box that holds the words User Name & Password and their corresponding fields. How can I change this to keep the text and fields, but remove the box that's around them? Thanks. Code: <form action="/sfolder/members/default.asp?action=login" method=post name=login language="JAVASCRIPT" onsubmit="return Validate();"><input type=hidden name=todo value="login"><input type=hidden name=url value="/sfolder/members/default.asp"><br> <table border=0 cellspacing=0 cellpadding=0 width=95% align=center class=colorformborder><tr class=colorformborder><td><table border=0 cellspacing=0 width=100% cellpadding=0><tr class=colorformborder><td colspan=2><table border=0 cellspacing=1 cellpadding=5 width=100% colspan=2><tr class=colorformheader><td colspan=2><font class=textsize9><b>Login Here</b></font></td></tr> <tr class=colorformfields><td align=center colspan=2><font class=textsize9></font></td></tr><tr class=colorformfieldsalt><td align=right width=50% ><font class=textsize9>User Name</font></td><td><font class=textsize9><input class=fieldbox type=text size=20 maxlength=50 name="members_username"></font></td></tr> <tr class=colorformfields><td align=right width=20% ><font class=textsize9>Password</font></td><td><font class=textsize9><input class=fieldbox type=password size=20 maxlength=50 name="members_password"></font></td></tr><tr class=colorformfields><td colspan=2 align=right><font class=textsize9><input class=fieldbox type=submit value="Login" id=submit2 name=submit2></font></td></tr> </td></tr></table></td></tr></table></td></tr></table><br><br></form> How can I make a simple Username and password function on one of my sites? mvh Prosit Hi! Please someone help me with this!! I'm updating someone else's website. I was asked to put a link on the home page to a .doc file. I uploaded the updated home page with link and the linked file to the website via Ipswitch WS-FTP. Now, what SHOULD happen is after clicking the link, the window asking to "open" or "save to disk" should pop up. What is happening instead is that a window pops up asking for a username and password. When "Cancel" is clicked, the file opens automatically. How can I fix this?? Here is the original site link: http://www.richmondtheatres.org If there is something wrong in the code, please let me know. The link is a simple "a href="http://www.richmondtheatres.org/Script Registry 9-1-07.doc"> Thanks for any help provided! I am having trouble with these username/password areas. Each browser seems to read them in a different way? The sizes, and especially the positioning is messed up. I coded for FF so there all works fine. Could someone try and make sense out of this? Much oblidged, thanks. log-in site here Hi all! I'd like to create a Username/Password form, but i dont know how to do it. I'd like something like this: Username: *user has to type name* Password: *user has to type password* ACCEPT CLEAN I want it to work only for ONE username and ONE password. So, if user types this correct username and password (plus ACCEPT) then the page links you to PageCorrect.htm If user types any kind of username and password besides the correct one (plus ACCEPT), then the page links you to PageIncorrect.htm If user clicks on CLEAN, then the boxes have to clean. Thanks a lot! I really need this help...Its something important I'm pretty new to HTML coding, and I think I'm close to getting this correct. I want to forward username and passwords typed into this site (near the bottom): http://www.mscd.edu/~career/ to automatically log people in to this site: https://www.myinterfase.com/metrostatecollege/student/ Code: <h2 align="center">Metro State Joblink Student Login</h2> <form method="post" action="https://www.myinterfase.com/metrostatecollege/student/" target="_blank"> <input type="hidden" name="offsite" id="offsite" value="1" /> <div id="container"> <div id="main" style="width:500px"> <div class="panelRow"> <span class="panelLabel">Username:</span> <span class="panelForw"><input type="text" id="username" name="username" /></span> </div> <div class="panelRow"> <span class="panelLabel">Password:</span> <span class="panelForw"><input type="password" id="pwd" name="pwd" /></span> </div> <div style="padding-left:115px;"><input type="Submit" id="submit" value="Login" /> </div> <div style="padding-left:115px;padding-top:8px;font-size: 10pt; font-family: verdana, arial, helvetica, sans-serif;"> <a href="https://www.myinterfase.com/metrostatecollege/studentregistration.aspx" target="_blank">Register Here!</a></div> <div style="padding-left:115px;padding-top:8px;font-size: 10pt; font-family: verdana, arial, helvetica, sans-serif;"><a href="https://www.myinterfase.com/metrostatecollege/passwordreset.aspx?ac=274" target="_blank">Forgot Password?</a> </div> </div> </div> </form> this code is working fine in other browsers but when i run this code in opera username text field becomes disabled, any one has solution here is the code: <script type="text/javascript"> function setFocus() { document.loginForm.txt_username.focus(); } function validation() { var cuser = document.loginForm.txt_username.value.length; var cpwd = document.loginForm.txt_password.value.length; if(cuser <= 0) { alert("Please enter username"); document.loginForm.txt_username.focus(); return false; } if(cpwd <= 0) { alert("Please enter password"); document.loginForm.txt_password.focus(); return false; } return true; } </script> <body onLoad="setFocus()"> <br /><br /><br /><br /><br /><br /><br /> <div align="center"> <form name="loginForm" method="post" action="index.php" onSubmit="return validation();"> <table> <tr> <td>Username:</td> <td><font face="Calibri" size="16px"><input type="text" name="txt_username" tabindex="1"/></font></td> </tr> <tr> <td>Password:</td> <td><font face="Calibri" size="16px"><input type="password" name="txt_password" tabindex="2" /></font></td> </tr> <tr> <td align="center"><input type="submit" name="btn_submit" value="Sign In" tabindex="3" /></td> </tr> </table> </form> </div> </body> how do i make a login for my website? i only want it to allow the user of admin and pass of bobys 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 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 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! 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 heyy, im tryin to create a simple login form on my page, but cnt seem t find coding that once the submit button in clicked and the info is correct, to go to a dif page.. it just stays :S any one help? thanks 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? I was just wondering how to make a login form on my website 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 how do I make an html webpage that I can log into. 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. |