Username Password Submit button question

Discussion in 'HTML & Website Design' started by gdutchm, Jan 30, 2008.

  1. #1
    Ok so I know how to make a Username and Password field and the button. What do i need to put in for the button to direct to the other page.? It isn't the same as using an image link is it?
     
    gdutchm, Jan 30, 2008 IP
  2. hav0k

    hav0k Active Member

    Messages:
    178
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    60
    #2
    http://www.tizag.com/htmlT/htmlsubmit.php --- then just keep on reading and those are all form tutorials.

    
    <!--declare the form, it's method of sending information and where the information is being sent-->
    <form method="post" action="URL to place you want to send form information">
    
    <!--initiate a text field for the username-->
    <input type="text" name="username" />
    
    <!--initiate a password field for the password-->
    <input type="password" name="password" />
    
    <!--initiate a submit button which, upon clicking, will send the data to the defined "action" when you declared a form-->
    <input type="submit" value="Submit" />
    
    <!--end the form-->
    </form>
    
    HTML:
     
    hav0k, Jan 30, 2008 IP
  3. gdutchm

    gdutchm Peon

    Messages:
    32
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Ahhh thank you. You are my hero. haha.
     
    gdutchm, Jan 30, 2008 IP