I have a problem: when I create a HTML-Element in the Backen of Typo3 (Version 9) and save it with some HTML-Content. All fine so far the output on the frontend works perfect. But when I want to edit, it seems like that the backend want to parse it wrong - I got the output as following: all tags are HTML-Entities now and the code is wrapped in some p-Tags (when I want to save now the code is saved this way to the db and frontend gets also wrong output for these element).
Does anybody have the same issue or an solution?
<p><form action="/action_page.php"> <label for="fname">First name:</label><br> <input type="text" id="fname" name="fname" value="John"><br> <label for="lname">Last name:</label><br> <input type="text" id="lname" name="lname" value="Doe"><br><br> <input type="submit" value="Submit"> </form></p>
