New Login form

This commit is contained in:
Min Zeya Phyo
2017-06-26 21:56:13 +06:30
parent 1f6a0eb1f6
commit b607154037
12 changed files with 154 additions and 19 deletions

View File

@@ -1,2 +1,11 @@
module ApplicationHelper
def flash_class(level)
case level
when :notice then "alert alert-info fade-in"
when :success then "alert alert-success fade-in"
when :error then "alert alert-error fade-in"
when :alert then "alert alert-error fade-in"
end
end
end