vedia/views/votes_new.erb
2025-12-03 19:02:45 +01:00

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>