component switch

This commit is contained in:
Diana 2024-10-21 17:25:50 -05:00
parent 8eb14bd2da
commit 7218f26d68
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package components
type FormSwitch struct {
ID string
Label string
IsChecked bool
IsDisabled bool
}

View file

@ -0,0 +1,7 @@
{{define "form_switch"}}
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" name="{{.ID}}" id="{{.ID}}" {{if eq .IsChecked true}} checked{{end}} {{if eq .IsDisabled true}} disabled{{end}}>
<label class="form-check-label" for="{{.ID}}">{{.Label}}</label>
</div>
{{end}}