Share Pastebin
Guest
Public paste!

Admin view

By: a guest | Mar 7th, 2010 | Syntax: Rails | Size: 0.75 KB | Hits: 290 | Expires: Never
Copy text to clipboard
  1. <% unless @error_message.nil? then %>
  2. <p class="error">Vous vous étes trompé, c'est mal.</p>
  3. <% end %>
  4. <% unless @bad_captcha.nil? then %>
  5. <p class="error">Vous avez entré un mauvais captcha</p>
  6. <% end %>
  7. <% unless cookies[:try].nil? then %>
  8. <p class="error">C'était votre deuxiéme tentative et vous avez encore lamentablement échoué ...<p>
  9. <p class="error">Dommage pour vous ...<p>
  10. <% else %>
  11. <% form_for(:admin, :url => {:action => "connexion"}) do |n| %>
  12. <p>Pseudo :<br /><%= n.text_field :pseudo %></p>
  13. <p>Mot de passe :<br/><%= n.password_field :pass %></p>
  14. <p>Captcha :</p>
  15. <p><%= image_tag("captcha/#{request.env['REMOTE_ADDR']}.jpg")%></p>
  16. <p><%= n.text_field :captcha %></p>
  17. <p><%= submit_tag "connexion" %></p>
  18. <% end %>
  19. <% end %>