i need to add the different captcha on the same page 2 times.
<% if(captchaNode!=null) { String captchaPath= "/content/captcha"; %>
<sling:include path="<%= captchaPath %>" resourceType="foundation/components/form/captcha" replaceSelectors="captcha"/>
<% } %>
<% if(captchaNode!=null) { String captchaPath= "/content/captcha_reply"; %>
<sling:include path="<%= captchaPath %>" resourceType="foundation/components/form/captcha" replaceSelectors="captcha"/>
<% } %>
Now on adding the above that I see that it adds in the same page 2 times the same id "cq_captchaimg" below is the html sinnpet
generated.
<div class="form_captcha_img">
<img id="cq_captchaimg" alt="" src="/content/captcha.captcha.png?id=123">
</div>
Please let me what are changes i must do to reslove it.