13 lines
371 B
Text
13 lines
371 B
Text
<h1><%= _("New vote") %></h1>
|
|
|
|
<form action="/votes/new" method="post">
|
|
<p>
|
|
<label for="title"><%= _("Title") %></label>
|
|
<input type="text" name="title">
|
|
</p>
|
|
<p>
|
|
<label for="description"><%= _("Description") %></label>
|
|
<textarea type="text" name="description"></textarea>
|
|
</p>
|
|
<button type="submit"><%= _("Create new vote") %></button>
|
|
</form>
|