%
'=======================================================================================================================
' Bootstrap Helper - Provides some convenience methods for Bootstrap use
'=======================================================================================================================
Class Bootstrap_Helper_Class
    '---------------------------------------------------------------------------------------------------------------------
    ' Forms
    '---------------------------------------------------------------------------------------------------------------------
    'Creates .control-label for Bootstrap styling
    Public Function ControlLabel(name, for_name)
        ControlLabel = HTML.LabelExt(name, for_name, Array("class", "control-label"))
    End Function
    
    Public Function Control(label_text, control_name, controls_html)
        Control = "
" & ControlLabel(label_text, control_name) & "
" & controls_html & "