45 | 46 |

47 | 48 | 49 | {% with register_message = get_flashed_messages(with_categories = true) %} 50 | {% if register_message %} 51 | {% for category, message in register_message %} 52 |

53 | {{ message }} 54 |
55 | {%endfor%} 56 | {% endif %} 57 | {% endwith %} 58 | 59 | 60 | {% block content %} 61 | 62 | {% endblock content %} 63 | 64 | 65 |

66 |