Played with angular material and absolutely loved it. But I discovered one rather surprising thing, and almost certainly I skipped the page in the manual, or well, on many pages, including this one.
I think I would add warning text in the โThats not your passwordโ lines for a failed login. And from bootstrap, I could easily do this with a warning window.
<div class="alert alert-danger" role="alert">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
<span class="sr-only">Error:</span>
Enter a valid email address
</div>
However, I cannot find a similar set for angular material. Yes, there is dialogue and toasts, but I wanted something simpler.
And yes, I could write my own class, but it looks like there must be a certain predefined class for it?