Hi all

I have a regular HTML form that I want to convert into a RoR form

Because I do not need to save the data in the database I think I need:
 - a controller and a viewer
 - send submitted fields through email

<h2>Contact Form</h2>
    <form action="contact.html">
    <fieldset>
    <legend>Please send your message: </legend>
    <p><label>Your Name:<br /><input type="text" /></label></p>
    <p><label>Your email:<br /><input type="email" /></label></p>
    <p><label>Message:<br /><textarea rows="5"
cols="5"></textarea></label></p>
    <p><label><input type="submit" value="Submit" class="submit"
/></label></p>
</fieldset>
    </form>

thanks
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to