Files
LazyPM/pkg/web/components/assignee_form.templ
2026-02-25 14:01:05 +01:00

24 lines
511 B
Plaintext

package components
import "github.com/LazyBachelor/LazyPM/pkg/web/components/base"
type AssigneeFormProps struct {
PatchAction string
Assignee string
}
templ AssigneeForm(props AssigneeFormProps) {
<form
hx-patch={ props.PatchAction }
hx-swap="innerHTML"
>
@base.Input(base.InputProps{
Name: "assignee",
Type: "text",
Placeholder: "Enter assingee",
Value: props.Assignee,
})
<button class="btn btn-primary mt-2" type="submit">Set Assignee</button>
</form>
}