freeCodeCamp/views/partials/flash.jade

15 lines
502 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

if messages.errors
.alert.alert-danger.animated.fadeIn
button.close(type='button', data-dismiss='alert') ×
for error in messages.errors
div= error.msg
if messages.info
.alert.alert-info.animated.fadeIn
button.close(type='button', data-dismiss='alert') ×
for info in messages.info
div= info.msg
if messages.success
.alert.alert-success.animated.fadeIn
button.close(type='button', data-dismiss='alert') ×
for success in messages.success
div= success.msg