Hi @_slv_ <pan_form/>
<div id="desc"></div>
</div>
<div id="desc">Some text here</div>
</div>
</td></tr>
</table>
</body>
</html> All right. To provide the solution to everyone who is interested, I removed the details of your customized captive portal website. You have to add the following code AFTER the part "<pan_form/>". The text and URL of course you could change for your environment. <script>
$(document).ready(function(){
var $input = $("<tr><td colspan='2' align='left'><input type='checkbox' id='terms' name='terms' value='terms' style='width:20px;' required />I accept <a href='URL-TO-TERMS-AND-CONDITIONS-DOCUMENT'>Terms and Conditions</a></td></tr>");
$('#taLogin table tr').eq(1).after($input);
});
</script> This will add a checkbox to the loginwebsite on a new line after thebpassword field and login should not be possible without activating the checkbox. This solution probably only works with your version of PAN-OS ( @_slv_ what version do you have installed?), as specially the captive portal website in PAN-OS 8 changed completely, so as this is not a solution out of the box, it needs to be retested after major softwareupdates and may be also slightly adjusted. Hope it works in your situation as I have only tested this in the browser directly. Regards, Remo
... View more