I'm following the instructions from GitHub about using the Login plugin. The first thing it says is...
"There is not a guaranteed way to display system messages including those added by the Login plugin, so in order to see messages you will need to make sure your theme has a method to output the messages. This is done by adding a simple Twig include, and the best place to do this to ensure it's visible in all your pages, is to add it to the partials/base.html.twig (or whatever your base Twig template is called):
{% block messages %}
{% include 'partials/messages.html.twig' ignore missing %}
{% endblock %}
A good location is probably to add this right above where your content is going to be output."
Can someone tell me the best place to insert the above simple Twig include into the partials/base.html.twig file? Is it necessary that I insert it at all? I have no idea what it is for or what it does.