removing log dir from .gitignore
[monkeycharger.git] / vendor / rails / actionpack / examples / debate / new_topic.erb
blobf52a69cc314cf6dc75cc79acabc719cdc7b90ae4
1 <html>
2 <body>
3 <h1>New topic</h1>
5 <form action="<%= url_for(:action => "create_topic") %>" method="post">
6   <p>
7     Title:<br>
8     <input type="text" name="topic[title]">
9   </p>
11   <p>
12     Body:<br>
13     <textarea name="topic[body]" style="width: 200px; height: 200px"></textarea>
14   </p>
16   <p>
17     <input type="submit" value="Create topic">
18   </p>
19 </form>
21 </body>
22 </html>