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