diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-03 16:38:22 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-03 16:51:00 +0200 |
commit | fc198a8b4ca6d22eaedee2cfb03e088432dc4b30 (patch) | |
tree | cc57ecb76638deb4b9cafd80e0c14911e4f419c6 /app/views/layouts | |
parent | b3c7c8700d7ddf73d6fef4076f15ae7c3d39ce67 (diff) |
Adding e-mail confirmations
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/auth.html.haml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/layouts/auth.html.haml b/app/views/layouts/auth.html.haml index 54aa07e2c..52d567280 100644 --- a/app/views/layouts/auth.html.haml +++ b/app/views/layouts/auth.html.haml @@ -7,6 +7,12 @@ %small= Rails.configuration.x.local_domain .form-container + - if flash[:notice] + .flash-message.notice= flash[:notice] + + - if flash[:alert] + .flash-message.alert= flash[:alert] + = yield = render template: "layouts/application" |