ucla / logon

self-service identity management prototype. not always up to date viewable build:
http://ucla.github.io/logon/
BSD 3-Clause "New" or "Revised" License
1 stars 8 forks source link

Symfony error styling #3

Open alroman opened 8 years ago

alroman commented 8 years ago

Symfony forms error output is currently not styled. This error output is generated by backend validators.

Here's the markup:

<span class="error">
  <ul>
    <li>You must select a valid option.</li>
  </ul>
</span>

Generated by this template:

<span class="error">{{ form_errors(form) }}</span>

Here's sample:

screen shot 2016-02-22 at 8 40 15 am
erutan commented 8 years ago

I actually forgot to set up Foundation's abide error handling on that page. ^^

Running off of one of the other create pages would be more useful (I'll fix the above issue soon).

erutan commented 8 years ago

Going through the pages now and checking that input fields have a relevant pattern on them and Abide markup is set.

Looks good to me now.