I am getting an error input is self closing and should not have content., but as you can see below there is no input tag to have any content. I even deleted the error link string, and this is still happening. I use jade.
26| li(class=(view==="redeem" ? "active": ""))
27| a(href="/transfer/redeem#action") Redeem Code
> 28| hr(id='action',class='mobile',style='padding-top: 50px;')
29| h2#track-balance(style="text-align: left") Balance:
30| span.currency #{balace}
31| br
32| - if (success === false) {
33| div.alert.alert-danger
34| strong Sorry!
35| | Your request could not be completed.
36| - } else if (success === true) {
37| div.alert.alert-success
38| strong Success!
39| | Your request completed!
40| - }
In the comment below, the actual error is in another included file:
|28 input(id='friend_fbid',type='hidden',name='say[facebook_id]')
There is nothing inside this input, although it does not have any trailing spaces.
source
share