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;
		$this->value = $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(sizeof($this->values)) {
			foreach($this->values as $key => $val) {
				$str .= $indent . "  ".$key.":".$val." \n";
			}
		}
		$str .= $indent . " /\
\/
+
-