fix(admin): use two-column layout for recaptcha settings form
This commit is contained in:
@@ -24,10 +24,23 @@ final class RecaptchaSettingsFormBuilder
|
||||
$html = '';
|
||||
|
||||
$html .= $this->buildHeader($componentId);
|
||||
|
||||
// LAYOUT 2 COLUMNAS
|
||||
$html .= '<div class="row g-3">';
|
||||
|
||||
// COLUMNA IZQUIERDA (6 cols)
|
||||
$html .= ' <div class="col-lg-6">';
|
||||
$html .= $this->buildVisibilityGroup($componentId);
|
||||
$html .= $this->buildCredentialsGroup($componentId);
|
||||
$html .= ' </div>';
|
||||
|
||||
// COLUMNA DERECHA (6 cols)
|
||||
$html .= ' <div class="col-lg-6">';
|
||||
$html .= $this->buildBehaviorGroup($componentId);
|
||||
$html .= $this->buildHelpSection();
|
||||
$html .= ' </div>';
|
||||
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user