antibot-no-js.tpl.php in Antibot 7
Template for printing a message to users without JavaScript enabled.
Available variables:
- $message: The message to display.
1 theme call to antibot-no-js.tpl.php
- antibot_form_pre_render in ./
antibot.module - Pre-render callback on forms that have Antibot protection.
File
templates/antibot-no-js.tpl.phpView source
<?php
/**
* @file
* Template for printing a message to users without JavaScript enabled.
*
* Available variables:
* - $message: The message to display.
*/
?>
<noscript>
<style>form.antibot { display: none !important; }</style>
<div class="antibot-no-js antibot-message antibot-message-warning messages warning">
<?php
print $message;
?>
</div>
</noscript>