Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
how to make Login Form??
Old 04-10-2008, 12:09 AM how to make Login Form??
mynameisfai's Avatar
Skilled Talker

Posts: 49
Trades: 0
hello all members and admin,

i want to learn how to make login form but i do know how to start.so please tell me how to make login form here
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
mynameisfai is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-10-2008, 02:43 AM Re: how to make Login Form??
Experienced Talker

Posts: 36
Name: Jay
Trades: 0
im not a pro at coding but your going to have to learn more then html to get a login form. try searching on google they have premade scripts for that usually for free. your going to need to learn javascript to make your webpage more interactive and css is helpful
jayjay050 is offline
Reply With Quote
View Public Profile
 
Old 04-10-2008, 03:33 AM Re: how to make Login Form??
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,382
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
HTML Code:
<form name="login" action="" method="get">
User Name:- <input type="text" name="uname" value="User Name" onfocus="this.select();"><br>
Password:- <input type="text" name="upass" value="Password" onfocus="this.select();"><br>
Remember me: <input type="checkbox" name="remember"> 
<input type="submit" name="login" value="Log In">
</form>
There's a form for you. However if you want it to actually do something, you'll need more than HTML.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-10-2008, 07:11 AM Re: how to make Login Form??
Defies a Status

Posts: 3,420
Trades: 0
Quote:
Originally Posted by chrishirst View Post
However if you want it to actually do something, you'll need more than HTML.
Quote:
Originally Posted by jayjay050 View Post
your going to need to learn javascript to make your webpage more interactive
Chris is right that you'd need something apart from HTML to make a login form function properly - however, Jayjay is incorrect that this would be Javascript. Javascript alone is only client-side so wouldn't be able to do very much and the login procedure could be completely removed if someone turned off Javascript.

To make a useful login system, you'll need something server side such as PHP or ASP that will check that the correct details have been entered against a database of users, and then send the correct pages to the user.

Dan
CSS4Life is offline
Reply With Quote
View Public Profile
 
Old 04-10-2008, 11:16 AM Re: how to make Login Form??
davidshaw's Avatar
Ultra Talker

Posts: 375
Name: David Shaw
Trades: 1
I once wrote a tutorial for a php login script:
PHP Login Script Tutorial

You may find it useful
__________________

Please login or register to view this content. Registration is FREE

davidshaw is offline
Reply With Quote
View Public Profile Visit davidshaw's homepage!
 
Old 04-10-2008, 11:39 AM Re: how to make Login Form??
sammy_p's Avatar
Experienced Talker

Posts: 46
Trades: 0
what type of login do you want exactly?

is this just going to be a login for one person or did you want a whole database of users? Are people going to be signing up for this?

Lots of questions that need to be answered... You've got a great starting point here and I'd add my suggestion that if you really want something easier perhaps look into getting a premade script off a place like hotscripts.com

Or better yet start using joomla, it comes standard with that sort of stuff
sammy_p is offline
Reply With Quote
View Public Profile
 
Old 04-10-2008, 06:14 PM Re: how to make Login Form??
Lashtal's Avatar
wherenomanhasgonebefore

Posts: 680
Name: Lashtal
Trades: 0
DavidShaw,

that tutorial is awesome.

I'm new to this myself, and I found that Extremely Helpful.

Thank you!
__________________
Currently Reading:
Please login or register to view this content. Registration is FREE
Lashtal is offline
Reply With Quote
View Public Profile
 
Old 04-10-2008, 06:25 PM Re: how to make Login Form??
Gilligan's Avatar
Website Designer

Posts: 1,670
Name: Stefan
Location: London, UK
Trades: 0
I myself bought PHP and MySQL for dummies. lol, although its very helpful
__________________

Please login or register to view this content. Registration is FREE
Gilligan is offline
Reply With Quote
View Public Profile
 
Old 04-10-2008, 08:08 PM Re: how to make Login Form??
davidshaw's Avatar
Ultra Talker

Posts: 375
Name: David Shaw
Trades: 1
@Lashtal
Cheers.. Will be extending on it in the near future, with other scripts that work alongside it, and scripts that are semi related. Stay Tuned.
__________________

Please login or register to view this content. Registration is FREE

davidshaw is offline
Reply With Quote
View Public Profile Visit davidshaw's homepage!
 
Old 04-11-2008, 07:03 AM Re: how to make Login Form??
BWDOW's Avatar
Experienced Talker

Posts: 45
Trades: 0
If you don't know any programming language then you don't need a form cause it's useless. You have to check the data with a script.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

BWDOW is offline
Reply With Quote
View Public Profile
 
Old 04-11-2008, 10:38 PM Re: how to make Login Form??
mynameisfai's Avatar
Skilled Talker

Posts: 49
Trades: 0
Quote:
Originally Posted by davidshaw View Post
I once wrote a tutorial for a php login script:
PHP Login Script Tutorial

You may find it useful
thank for this david
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
mynameisfai is offline
Reply With Quote
View Public Profile
 
Old 04-12-2008, 12:11 AM Re: how to make Login Form??
mynameisfai's Avatar
Skilled Talker

Posts: 49
Trades: 0
anybody know how to put comment form into website?
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
mynameisfai is offline
Reply With Quote
View Public Profile
 
Old 04-12-2008, 09:52 AM Re: how to make Login Form??
Gilligan's Avatar
Website Designer

Posts: 1,670
Name: Stefan
Location: London, UK
Trades: 0
again, you'd need a server side script. eg: PHP

heres a good script for you to download.

http://gentlesource.com/comment-script/
__________________

Please login or register to view this content. Registration is FREE
Gilligan is offline
Reply With Quote
View Public Profile
 
Old 04-13-2008, 04:10 AM Re: how to make Login Form??
mynameisfai's Avatar
Skilled Talker

Posts: 49
Trades: 0
Quote:
Originally Posted by Gilligan View Post
again, you'd need a server side script. eg: PHP

heres a good script for you to download.

http://gentlesource.com/comment-script/
thank again
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
mynameisfai is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to how to make Login Form??
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.46752 seconds with 12 queries