-
Iain Beeston authored
In regular HTML `<br>` is a void element, so it Many of the shared templates used by devise use `<br/>` to separate lines, which is invalid html because `<br>` doesn't need a closing tag or a closing slash. See the WhatWG spec here: https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-br-element Also, the WhatWG spec uses `<p>` tags to separate `<label>` and `<input>` tags rather than `<br>`, see here: https://html.spec.whatwg.org/multipage/input.html To clean this up I've replaced `<br/>` with paragraph tags throughout all of the templates. This reverts b86c1c24
Iain Beeston authoredIn regular HTML `<br>` is a void element, so it Many of the shared templates used by devise use `<br/>` to separate lines, which is invalid html because `<br>` doesn't need a closing tag or a closing slash. See the WhatWG spec here: https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-br-element Also, the WhatWG spec uses `<p>` tags to separate `<label>` and `<input>` tags rather than `<br>`, see here: https://html.spec.whatwg.org/multipage/input.html To clean this up I've replaced `<br/>` with paragraph tags throughout all of the templates. This reverts b86c1c24
Loading