|
@@ -15,8 +15,14 @@
|
|
|
<?= $this->form->label(t("Logo URL"), "logo_url") ?>
|
|
|
<?= $this->form->text("logo_url", $branding, [], ['placeholder="https://example.com/logo.png"']) ?>
|
|
|
|
|
|
- <?= $this->form->label(t("Accent Color"), "accent_color") ?>
|
|
|
- <?= $this->form->text("accent_color", $branding, [], ['type="color"']) ?>
|
|
|
+ <?= $this->form->label(t("Foreground Color"), "foreground_color") ?>
|
|
|
+ <?= $this->form->text("foreground_color", $branding, [], ['type="color"']) ?>
|
|
|
+
|
|
|
+ <?= $this->form->label(t("Background Color"), "background_color") ?>
|
|
|
+ <?= $this->form->text("background_color", $branding, [], ['type="color"']) ?>
|
|
|
+
|
|
|
+ <?= $this->form->label(t("Secondary Background Color"), "second_background_color") ?>
|
|
|
+ <?= $this->form->text("second_background_color", $branding, [], ['type="color"']) ?>
|
|
|
|
|
|
<div class="form-actions">
|
|
|
<button type="submit" class="btn btn-blue"><?= t("Save") ?></button>
|