diff --git a/app/views/debates/_votes.html.erb b/app/views/debates/_votes.html.erb
index 4df21e9d0..5ce64d784 100644
--- a/app/views/debates/_votes.html.erb
+++ b/app/views/debates/_votes.html.erb
@@ -21,14 +21,14 @@
<%= t("debates.debate.votes", count: debate.total_votes) %>
-
+ <% if user_signed_in? && current_user.unverified? %>
+
<%= t("votes.anonymous",
verify_account: link_to(t("votes.verify_account"), new_residence_path )).html_safe %>
-
- <% unless user_signed_in? %>
+ <% elsif !user_signed_in? %>
<%= t("votes.unauthenticated",
signin: link_to(t("votes.signin"), new_user_session_path),