1
0
mirror of https://github.com/axzilla/templui.git synced 2025-02-22 01:53:09 +00:00

improve: add toggle to the preview

This commit is contained in:
axzilla 2024-10-25 10:07:00 +02:00
parent d5918f2bed
commit 5f3601e431

View File

@ -127,6 +127,32 @@ templ ThemePreview() {
</div>
}
</div>
<div class="space-y-4">
<label class="text-sm font-medium">Preferences</label>
<div class="space-y-2">
@components.Toggle(components.ToggleProps{
ID: "marketing",
Name: "marketing",
LabelRight: "Receive marketing emails",
})
</div>
<div class="space-y-2">
@components.Toggle(components.ToggleProps{
ID: "notifications",
Name: "notifications",
LabelRight: "Enable notifications",
Checked: "true",
})
</div>
<div class="space-y-2">
@components.Toggle(components.ToggleProps{
ID: "beta",
Name: "beta",
LabelRight: "Join beta program",
Disabled: "true",
})
</div>
</div>
<div class="space-y-2">
@components.Checkbox(components.CheckboxProps{
ID: "terms",