10 lines
245 B
Plaintext
10 lines
245 B
Plaintext
|
|
<% if @users.empty? -%>
|
|
<%= notice_icon %> No Valid Passwords Found.
|
|
<% else -%>
|
|
<%= critical_icon %> Valid Combinations Found:
|
|
<% @users.each do |user| -%>
|
|
| Username: <%= user.username %>, Password: <%= user.password %>
|
|
<% end -%>
|
|
<% end %>
|