package frameproto
// AppendFrameInputText will append the HTML element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:input:text" name-value pair.
//
// For example, this call:
//
// var p []byte
//
// // ...
//
// var label string = "enter your username
//
// p = frameproto.AppendFrameInputText(p, label)
//
// Would append this HTML element:
//
//
func AppendFrameInputText(p []byte, label string) []byte {
const property string = MetaPropertyFrameInputText
return appendMetaPropertyContent(p, property, label)
}