vedia/views/votes_show_unauthenticated.erb
ricola 45c8e9b6b4 Display vote name even when unauthenticated
For example, when sharing the link in messaging apps.
2026-01-09 17:20:01 -06:00

17 lines
620 B
Text

<div class="mb-5">
<h1><%= @vote.title %></h1>
</div>
<p class="alert alert-warning mb-4"><%= _("You need to log in to see the details of this vote.") %></p>
<form action="/login" method="post" class="mb-5">
<div class="mb-3">
<label for="email" class="form-label"><%= _("Email") %></label>
<input type="text" name="email" class="form-control">
</div>
<div class="mb-3">
<label for="password" class="form-label"><%= _("Password") %></label>
<input type="password" name="password" class="form-control">
</div>
<button type="submit" class="btn btn-primary"><%= _("Login") %></button>
</form>