diff options
author | Pacien TRAN-GIRARD | 2015-02-08 00:17:21 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-02-08 00:17:21 +0100 |
commit | cb902da50bd75b623a47727e62c0c69913422bfd (patch) | |
tree | 2296df3bc243176f640732fffc80ec553a371367 /app/views/fragments/forms/globalErrors.scala.html | |
parent | 3d22cb7d1ee6bdf7b484bbf001c76e81ae351dea (diff) | |
download | minibay-cb902da50bd75b623a47727e62c0c69913422bfd.tar.gz |
Authentication draft
Diffstat (limited to 'app/views/fragments/forms/globalErrors.scala.html')
-rw-r--r-- | app/views/fragments/forms/globalErrors.scala.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/views/fragments/forms/globalErrors.scala.html b/app/views/fragments/forms/globalErrors.scala.html new file mode 100644 index 0000000..98dad24 --- /dev/null +++ b/app/views/fragments/forms/globalErrors.scala.html | |||
@@ -0,0 +1,7 @@ | |||
1 | @(form: Form[_ <: Product]) | ||
2 | |||
3 | <div class="flash-message"> | ||
4 | @for(error <- form.globalErrors) { | ||
5 | <div class="error">@error.message</div> | ||
6 | } | ||
7 | </div> | ||