label = $label;
		$this->name = $name;
		$this->value = $value;
	}
	function render($indent = "")
	{
		$str  = $indent . "
\n";
		return $str;
	}
}
class LineEditPwd {
	public $label, $name, $value;
		
	function LineEditPwd($label, $name, $value = "")
	{
		$this->label = $label;
		$this->name = $name;
		$this->value = $value;
	}
	function render($indent = "")
	{
		$str  = $indent . "\n";
		return $str;
	}
}
class FileUpload {
	public $label, $name, $accept;
	public function FileUpload($label, $name, $accept = "*")
	{
		$this->label = $label;
		$this->name = $name;
		$this->accept = $accept;
	}
	public function render($indent = "")
	{
		$str  = $indent . "\n";
		return $str;
	}
}
class Button {
	public $label;
	public function Button($label)
	{
		$this->label = $label;
	}
	public function render($indent = "")
	{
		$str  = $indent . "\n";
		return $str;
	}
}
class CheckBox {
	public $label, $name, $value;
		
	public function CheckBox($label, $name, $value = "")
	{
		$this->label = $label;
		$this->name = $name;
    if($value == true || $value == "on" || $value == "true" || $value == "yes")
      $this->value = "checked ";
    else
      $this->value = "";
	}
	public function render($indent = "")
	{
		$str  = $indent . "\n";
		return $str;
	}
}
class ComboBox {
	public $label, $name, $value, $values;
		
	public function ComboBox($label, $name, $value, $values)
	{
		$this->label = $label;
		$this->name = $name;
		$this->value = $value;
		$this->values = $values;
	}
	public function render($indent = "")
	{
		$str  = $indent . "\n";
		return $str;
	}
}
class Hidden {
	public $values;
	public function Hidden($values)
	{
		$this->values = $values;
	}
	public function render($indent = "")
	{
		$str = "";
		foreach($this->values as $key => $value) {
			$str .= $indent . "name."[]\">\n";
		if($this->values) {
      if($this->commalist) {
        foreach($this->values as $val) {
          $str .= $indent . "  ".$val." \n";
        }
      } else {
        foreach($this->values as $key => $val) {
          $str .= $indent . "  ".$key.":".$val." \n";
        }
      }
		}
		$str .= $indent . " /\
\/
+
-