HTML - Login/password And Posting In Html
Hi, I'm new here.
So i have problem, friend ask me for making a web but only in HTML cause portal on which she got account doesn't support PHP. And I'm wondering if there is some more or less easy way to create login/password protected access to the web form in HTML, that she can log in and then add posts on her website in way that I'm using right now writing this post. Of course all in HTML, if its not possible I will figure out something else. Thanks in advance. =] Similar TutorialsNow then... I host with Aventure who use cPanel. I have created a passworded directory and have a number of users set up with usernames and passwords.. which is all very nice, but I can not find a way of adding Username and Password fields to a web page as oposed to clicking on a link which then brings up a seperate box to fill in (see www.strictly-smokin.co.uk). Any clues? I'd just like two fields for users to input their details without that box appearing... Cheers, mmiicchhaaeelll Ok I created a layout in photoshop and I want to know how to place the login/password bar onto my layout. The whole layout is cut into slices etc but when I place the bars where I want, the layout gets messed up. Is this possible? I remember seeing this somewhere but I don't really remember how to place the info in the address. Is it something like http://test.com@username:password ? Thanks! Hi, I've the following code. I want on the button hit on formOne the data in both the forms to be submitted. I'm new to Javascript so any advise is welcome. Thanks. <html> <head> <script language="javascript"> function doApply() { document.formOne.submit(); document.formTwo.submit(); } </script> </head> <body> <form name="formOne" method="GET" action="ex.html"> <input type="text" name="oneText"/> <input type="submit" value="submit1" onClick="javascript:doApply();"/> </form> <form name="formTwo" method="GET" action="ex.html"> <input type="text" name="twoText"/> </form> </body> </html> I am building a website for a class and I need the ability to post comments. I need to take in name, address, all the usual stuff, their comments and then post it back for everyone to read. The catch is that my site will mainly be being viewed offline. I will have it online, but that isnt part of the requirements. I need some sort of extremely simple form/posting method that doesnt require anything to be running server-side. I have decent knowledge of html, but zero knowledge of java scripting, php, mysql, asp, perl, etc. I have downloaded some guestbook generators and looked at some other examples, but all of them seem to require something running server side. I say seem because I really dont know. I dont need any security or anti spam or spell check or anything like that, just something really simple. It is getting down to crunch time, so any help would be appreciated. If you need anything on my end please let me know. I am recieving email notifications on this post, but if you want to IM me at phemmin and get some interactive discussion going, that would be great. I probably wont be around until tomorrow afternoon. Also, I am using frames, dont know if that will matter any. Can someone help please? I am using the following code to put a password on a webpage, it all looks ok but will not display the location page (gallery2.html), and I can not work out why. A 'done but with errors on page' message indicates that the problem is with the line location="gallery2.html", but I don't see why? The file is in the same folder as this file so no need for file names, etc...... HELP! <html> <body TEXT="000066" bgcolor="#999999"> <br> <script language="javascript"> <!--// /*This Script allows people to enter by using a form that asks for a UserID and Password*/ function pasuser(form) { if (form.pass.value=="password") { location="gallery2.html" } else { alert("Invalid Password") } //--> }</script> <center> <table bgcolor="#999999" cellpadding="12" border="0"> <tr><td colspan="2"><center><FONT face="Bradley Hand ITC" FONT SIZE="4">This is a private gallery. Please enter your password.</font></center></td></tr> <tr><td><h1><FONT face="Bradley Hand ITC" FONT SIZE="4">Password:</font></h1></td><td><input name="pass" type="password"></td></tr> <tr><td><center><input type="button" value="Login" onClick="pasuser(this.form)"></center></td><td><center><br> </form></td></tr></table></center> </body> </html> At present i am creating a knowledge base at work and have an admin access link that goes to a folder on a server. What i want is client or server side html to request a password when this link is clicked and if the password is not correct then a message box shows that says the password is incorrect. Can anyone help? can you hack the password on this forum? http://www.hiddenforum.net I'm not trying to advertise but more to improve my html based password protecting code because, as far as I know, no one has created a proper one 1St PROBLEM OF PASSWORD HIDING HAS BEEN SOLVED,N DA 2ND PROBLEM HAS BEEN GIVEN IN THE LAST POST OF MINE. PLEASE CHECK @ALL N HELP ME. Hey friends,i'm having a JavaScript by which we can make our html page password protected. I got dis script from a site n tried,but dont know where i'm going wrong. CAN U ALL PLZ TRY IT N DEN SAY ME,HOW N WHAT TO DO. The script is as follows,which is to b placed in the head tag. Ok.. <script language="JavaScript"> <!--hide script supplied by hypergurl http://www.hypergurl.com var password; var pass1="daksh"; password=prompt('Enter your password in order to view this page!',' '); if (password==pass1) alert('Correct password, OK to enter!'); else { window.location="http://soamz.uk.to"; } // end hide--> </script> Plz help me.. My temporary site is http://soamz.uk.to I would like to have a "User" or "Memebers Only" section on our website. What differs from other HTML code that I have been able to find is that what we would like to do is from our login page have have a specific page come up depending on the "User Name" and "Password". We DO NOT want to have a list of other users to be shown though, we have found a code that has a list to select from but this shows other users. Can anyone assist? ______________________ sport book betting steroid Basically an uploader first time chooses a password and then whenever he/she wants to upload something he/she must type in a password and if done correctly, he/she can upload up to say 1000 KB of stuff per upload that is downloadable. How with HTML is such possible especially setting the limit on each upload (1000 KB for example) please? Thank you all in advanced for helping me out ; ) - Jason how do I make an html webpage that I can log into. hey guys, im new here and i dont really knwo if im posting this in the right place, but i am trying to make a website with a login sequence so the Guests can only see half of the Website and you must register to see the rest and can post comments, update profiles and stuff, but i cant host it with database so is it possible to just make a website like that? and not using a free website creator... thnx for reading D.emon Hi, My friend asked me to do a script for a phpBB2 forum where he has an application on an external website, and when the user clicks submit, it automatically posts a new topic in the "application" section, with the application in it. I am not sure if this is possible, but I am willing to give it a go. I made a script where the applicant clicks 'submit', and it automatically brings him to the main forum page, and already logged in. There is no problem with having the username and password as plain text, as registration is free anyway and the account will just be 'appbot' or something. This is what I have so far: Code: <form action="http://www.website.com/login.php" method="post"> <input type="hidden" name="username" value="username" /> <input type="hidden" name="password" value="password" /> <input type="hidden" name="redirect" value="" /> <input type="submit" value="Go to Forum!" /> </form> I was wondering if it is possible to navigate through both the login and the new topic button and create the new topic without redirecting the user, or if that isn't possible to at least have the user click the button and then be redirected to the new post (which is already made by the script) rather then the main page. Thanks P.S. - I am only asking for the website navigation I should be fine for the inputting of the application and converting it to a post. Hello gurus, usually i write code to bypass the login and passwd page for science journals as in our organisation we want to give the access to journals for all users ith out they knowing the passwd.. I copy the page source of the login page of journal and change login and passwd type to hidden and enter the value..in the form.. But this particular journal is giving this following probs.. <INPUT TYPE="hidden" NAME="signin" VALUE="Sign In" TABINDEX="3"> if I change hidden to submit it is working..but i donot want the user to click sigin also..it should directly login to the journal.. Pls help tosolve this problem.. or is there any other way to bypass the login page and enter in to a site if i know the login and passwd.. thanks I just posted a question 5 minutes ago and now it's gone. hummm any thoughts? Hello! I need some help with my website - it is an international job posting website and I cant figure out how to make the job postings go on auto-pilot. Say someone would like to post a job, as of right now they email me and I put it on the website, and recently I tried using a forum but a) the viewer has to sign up with this forum company and b) they delete my posts because they have to do with money i think... so I'm wondering if anyone out there would know how to put this site on auto pilot by creating my own forum or something!! Thanks so much to whoever can help a sista out! Lindsay Sorry if this is the wrong section to post in but as I have explained I'm new to this & I don't fully understand what everything means. But my question is this: A long time ago somebody told me of a method in which I was able to make a nwe forum topic via the address bar. There were spaces to put the message, topic title, topic icon etc. But being slow I forgot it. I was just wondering if anyone could help me with this as I would like to use it to make multiple topics on my new message board & I don't want to type the whole topic out again everytime I post. Again I'm sorry is this is the wrong place to post a quaestion like this. Thanks, Jonny. I want to post information to another pages through links: for example, I want when clicking on a link "client" to go another page saying "Welcome Client" How could I do something like that..I know that I must use a form in order to post information to another pages...How to do it without using a form...Help please! Thanks in advance... I am adding an event to a web page I have inherited from someone else. I don't have access to the CSS styles in the webpage, so I have to use existing styles. The page is supposed to line up in two columns, and used to do that before my updates today, but for some reason now is all in one long column. I could use another set of eyes, as I can't seem to see the reason it is having problems. Can you help me? I need to get an answer this morning or I will have to change the page back so that it looks correctly even if it has old information. |