Can you assist in resolving this issue?
There is a form which displays the inscription "You break my heart" immediately after loading, but I need it to only appear after the user attempts to enter text in the form.
<div ng-app="">
<form name="LovelyForm">
<input type="email" name="LovelyEmail" ng-model="email" required />
<br>
<span ng-show="LovelyForm.LovelyEmail.$invalid">You break my heart</span>
</form>
</div>