vedia/views/home.erb

21 lines
385 B
Text

<h1>Home</h1>
<p>Hello, <%= current_user.email %>.</p>
<h2>Votes</h2>
<ul>
<% @votes.each do |vote| %>
<li>
<a href="/votes/<%= vote.secure_id %>"><%= vote.title %></a>
</li>
<% end %>
</ul>
<form action="/votes/new" method="get">
<button type="submit">Create new vote</button>
</form>
<form action="/logout" method="post">
<button type="submit">Log out</button>
</form>