To add multiple forms with SmartCaptcha from Yandex on a website built on 1C-Bitrix, you can follow these steps:
1. Register your site on Yandex and obtain the necessary API keys for SmartCaptcha.
2. In the 1C-Bitrix admin panel, go to "Settings" -> "CAPTCHA" and select "Yandex" as the CAPTCHA service provider. Enter your Yandex API keys.
3. Locate the form code in the 1C-Bitrix template files where you want to add the SmartCaptcha protection. Look for the code corresponding to the particular form you want to protect (for example, "form.result.new").
4. Add the following code snippet before or after the form code to integrate SmartCaptcha:
```php
<?php
$APPLICATION->IncludeComponent(
"bitrix:main.feedback",
"",
Array(
"USE_CAPTCHA" => "Y",
"CAPTCHA_TYPE" => "Yandex"
)
);
?>
```
5. Repeat the above steps for each form you want to protect with SmartCaptcha.
6. Save the changes and test the forms on your website to ensure that SmartCaptcha protection is working correctly.
Please note that the code provided above is a general example and may need to be adjusted based on the specific implementation of the form on your 1C-Bitrix website. It is recommended to consult the 1C-Bitrix documentation or seek assistance from a developer familiar with the platform for more detailed guidance.