Results 1 to 2 of 2

Thread: How to hide letters as stars in form?

  1. #1
    Join Date
    Nov 2008
    Posts
    4

    Question How to hide letters as stars in form?

    Hello.
    How to create next form:
    in the first field of form, letters are normal, visible.
    and in the second field of form letters are hidden, as stars.
    and must be pushbutton "Send"
    Data of fields will be sending on e-mail.
    How to do it?

  2. #2
    Join Date
    Sep 2008
    Posts
    899
    Quote Originally Posted by Programmeast View Post
    Hello.
    How to create next form:
    in the first field of form, letters are normal, visible.
    and in the second field of form letters are hidden, as stars.
    and must be pushbutton "Send"
    Data of fields will be sending on e-mail.
    How to do it?


    <form action="mailto:recipient@somesite.net" method="post">
    Username:
    <input type="text" name="user" size="20" />
    <br />
    Password:
    <input type="password" name="password" size="20" />
    <Input type="submit" name="submit" value="Send">

    </form>

    This will do two of the three things you want. It will display text in the first box and "stars" in the second.

    It will provide a submit button that says "Send"

    It, however, will not automatically send your form info via email nor auto-populate your user's message box if their browser is IE6+.

    There are fixes for this, but they usually take additional software, extensions, and/or services.

    See:
    http://www.wickham43.supanet.com/tutorial/forms.html

Similar Threads

  1. passing information from 1 form to another
    By amanxman in forum Client & Server Side Scripting (PHP, ASP, JavaScript)
    Replies: 0
    Last Post: 11 Apr 2006, 03:44 AM
  2. Insert a form within a form
    By stevenbhn in forum General Questions
    Replies: 1
    Last Post: 10 Feb 2006, 05:16 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •