Contact Us Form

Discussion in 'HTML & Website Design' started by KiHack, Sep 23, 2007.

  1. #1
    Hey people,

    I recently made a website, in the website, I need a contact us form.
    I require the following fields:

    Name: One Line field.
    E-Mail Address: One Line Field

    Subject: One Line

    Body: A large block where multiple lines can be added.

    Two buttons:

    Submit: relays directly to my e-mail ID
    Reset: Blanks all the fields.

    Can someone make this for me.

    Much appreciated
    Thanks in Advance
     
    KiHack, Sep 23, 2007 IP
  2. professionalroy

    professionalroy Banned

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I can do this. What is the price you would be looking to pay>?:)
     
    professionalroy, Sep 23, 2007 IP
  3. InsightInc

    InsightInc Guest

    Messages:
    130
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I will do it for $20. Let me know if you are interested.
     
    InsightInc, Sep 23, 2007 IP
  4. XTreMe

    XTreMe Banned

    Messages:
    1,226
    Likes Received:
    57
    Best Answers:
    0
    Trophy Points:
    0
    #4
    i have it i didn't create it by own but 1 website probiding it for free and the email will sent to your email id and when we submit the form you can choose your own page you want to show after submission if you want it then pm me its free. or visit my signature website you can find this form in contact us page of my website.
     
    XTreMe, Sep 23, 2007 IP
  5. KiHack

    KiHack Banned

    Messages:
    1,050
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Thanks a lot for the replies.
    This isn't supposed, to be a paid job, as it is extremely easy to create.
    I am just facing a technical error.
    lol@insightInc. this job certainly doesn't deserve $20.

    Thanks a lot XTreMe.
    PMing you now, your site's form looks great
     
    KiHack, Sep 23, 2007 IP
  6. XTreMe

    XTreMe Banned

    Messages:
    1,226
    Likes Received:
    57
    Best Answers:
    0
    Trophy Points:
    0
    #6
    <body>
    
    <p><font face="Arial">Your name:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font>
    <font face="Arial" color="#ffffff"><input size="30" name="username"></font><font face="Arial">
    </font></p>
    <p><font face="Arial">Email address: </font><font face="Arial" color="#ffffff">
    <input size="30" name="useraddr"></font><font face="Arial"> </font></p>
    <p><font face="Arial">Subject::&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font>
    <font face="Arial" color="#ffffff"><input size="30" name="useraddr1"></font><font face="Arial">
    </font></p>
    <p><font face="Arial">Please enter your comments here</font><br>
    <textarea name="comments" rows="5" cols="60"></textarea>
    <input type="hidden" value="i-pakistani( at )hotmail.com" name="emailto">
    <input type="hidden" value="www.Funpk.net.tc" name="nextpage">
    <input type="hidden" value="Thankyou your email has been Submited" name="subject">
    </p>
    <p><input type="submit" value="Send"> <input type="reset" value="Clear form">
    </p>
    
    </body>
    HTML:
    change http://www.funpk.net.tc with the page you want to show after submitting the form and change "Thankyou your email has been Sub" with the Subject with you want to recieve the message at your inbox and change i-pakistani( at )hotmail.com with your email:)
     
    XTreMe, Sep 23, 2007 IP
  7. Xavier_3D

    Xavier_3D Well-Known Member

    Messages:
    1,299
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    140
    #7
    Y cant u do it For urself?... I can teach you if you want...
     
    Xavier_3D, Sep 23, 2007 IP
  8. KiHack

    KiHack Banned

    Messages:
    1,050
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Thanks for The offer Xavier_3d.
    I just had a small customisation problem with comments box.

    +rep given XtreMe
     
    KiHack, Sep 23, 2007 IP
  9. KiHack

    KiHack Banned

    Messages:
    1,050
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    0
    #9
    The submit button doesn't work.
    Why is this happening?
     
    KiHack, Sep 23, 2007 IP
  10. Lethal7

    Lethal7 Active Member

    Messages:
    2,262
    Likes Received:
    56
    Best Answers:
    0
    Trophy Points:
    90
    #10
    kihack search google, there are hundreds of free ones...
     
    Lethal7, Sep 23, 2007 IP
  11. AstarothSolutions

    AstarothSolutions Peon

    Messages:
    2,680
    Likes Received:
    77
    Best Answers:
    0
    Trophy Points:
    0
    #11
    The submit button does work but there is no form element nor any action so the browser is simply sending the entries back to you but you dont have anything set up to deal with the info.

    The code is terrible anyway, google is your friend, it will give you a contact form and more importantly the associated script/ code to handle the response.

    Without knowing if your server runs .Net/ ASP/ PHP etc it isnt possible to randomly give you the code to do it (and $20 is less than we would charge so wasnt a bad offer at all)
     
    AstarothSolutions, Sep 23, 2007 IP
  12. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Yeah forms need something backend to actually do something. Value="send" doesn't actually mean anything.

    The above code uses old-fashioned styling which is actually limiting and there are no labels for the inputs, which is something people should use for clarity esp with screen readers (now, the order in above code will work fine in a screen reader but with labels you can always change the order like for instance with checkboxes or radio buttons and they will always belong together correctly).

    
    <form method="post" action="formpage.html">
     <fieldset>
     <legend>Please Fill In Our Form</legend>
     <label for="name">Name:</label>
       <input type="text" name="name" id="name" size="30" (or whatever) value="" />
     <label for="email">E-mail:</label>
       <input type="text" name="email" id="email" size="30" value="" />
     <label for="subject">Subject:</label>
      <input type="text" name="subject" id="subject" size="50" value="" />
     <label for="textbox">Comments:</label>
      <textarea name="comments" id="comments" cols="30" rows="7"></textarea>
      <input type="submit" class="bottombuttons" value="Send This Form" />
      <input type="reset" class="bottombuttons" value="Reset The Form" />
    </fieldset>
    </form>
    
    Code (markup):
    You then need code to actually have submit button actually send you the email. You can do the hidden button like Xtreme did but this depends on how your server runs... for instance his form wouldn't work on our machines because the site expects everything to have a php order in it.
     
    Stomme poes, Sep 23, 2007 IP
  13. jemy

    jemy Peon

    Messages:
    70
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #13
    jemy, Sep 23, 2007 IP
  14. professional-lists

    professional-lists Peon

    Messages:
    52
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #14
    What you need to do is pass the information in the HTML form to PHP script and let PHP email the answers from the form to you.
     
    professional-lists, Sep 23, 2007 IP
  15. AstarothSolutions

    AstarothSolutions Peon

    Messages:
    2,680
    Likes Received:
    77
    Best Answers:
    0
    Trophy Points:
    0
    #15
    Or ASP or .Net or CFM or CGI or JSP or....

    Why do some people think that PHP is the only server side scripting? :rolleyes:
     
    AstarothSolutions, Sep 24, 2007 IP
  16. KiHack

    KiHack Banned

    Messages:
    1,050
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    0
    #16
    Thanks a lot people.
    Especially jemi, Astaroth, and Stomme poes.
     
    KiHack, Sep 24, 2007 IP
  17. RRWH

    RRWH Active Member

    Messages:
    821
    Likes Received:
    49
    Best Answers:
    0
    Trophy Points:
    70
    #17
    if you have not got a working solution yet and your site runs php then take a look at rrwh.com/scripts.php for a complete PHP form mail script that will suit your needs.
     
    RRWH, Sep 24, 2007 IP
  18. KiHack

    KiHack Banned

    Messages:
    1,050
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    0
    #18
    Thats your site I presume?
    It looks pretty good, but it says I got to register to see form. :(
     
    KiHack, Sep 25, 2007 IP
  19. tapanp

    tapanp Peon

    Messages:
    342
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #19
    tapanp, Sep 25, 2007 IP
  20. gsv13

    gsv13 Well-Known Member

    Messages:
    2,773
    Likes Received:
    114
    Best Answers:
    0
    Trophy Points:
    130
    #20
    Jotform.com make your own contact form free.... save bandwidth. Best for site on free host without mail function requirement.
     
    gsv13, Sep 25, 2007 IP