engine/app/helpers/admin/login_helper.rb

18 lines
370 B
Ruby
Raw Normal View History

2010-06-03 15:32:40 +00:00
module Admin::LoginHelper
2010-06-03 15:32:40 +00:00
def login_flash_message
if not flash.empty?
content_tag :div, flash.values.first,
:id => "flash-#{flash.keys.first}",
2010-06-03 15:32:40 +00:00
:class => 'application-message'
else
''
end
2010-06-03 15:32:40 +00:00
end
2010-06-03 15:32:40 +00:00
def login_button_tag(label)
content_tag(:button, content_tag(:span, label), :type => 'submit', :class => 'button')
end
end