package main
import "fmt"
func chatDiv(content string, color string) string {
return fmt.Sprintf(`
%s
`, color, htmlIfy(content))
}
func loader() string {
return ``
}
func inputMessageDisabled(disabled bool) string {
if disabled {
return ``
}
return ``
}