topical media & game development

talk show tell print

#javascript-code-01-form.htm / htm



  <html>
  <head>
      <title>Simple Form</title>
  </head>
  <body>
  <form action="" method="POST">
      <fieldset class="login">
        <legend>Login Information</legend>
        <label for="username" class="hover">Username</label>
        <input type="text" id="username" class="required text"/>
                  
        <label for="password" class="hover">Password</label>
        <input type="password" id="password" class="required text"/>
      </fieldset>
      <fieldset>
          <legend>Personal Information</legend>
                  
          <label for="name">Name</label>
          <input type="text" id="name" class="required text"/><br/>
                  
          <label for="email">Email</label>
          <input type="text" id="email" class="required email text"/><br/>
                  
          <label for="date">Date</label>
          <input type="text" id="date" class="required date text"/><br/>
                  
          <label for="url">Website</label>
          <input type="text" id="url" class="url text" value="http://"/><br/>
                  
          <label for="phone">Phone</label>
          <input type="text" id="phone" class="phone text"/><br/>
  
          <label for="age">Over 13?</label>
          <input type="checkbox" id="age" name="age" value="yes"/><br/>
                  
          <input type="submit" value="Submit Form" class="submit"/>
      </fieldset>
  </form>
  </body>
  </html>
  
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.