How do I add a css "class=whatever" to the Label?
In a Form class:
<?php
MyForm extends Form(
    public function initialize() {
        $email = new Text('email');
        $email->setLabel('email')
        // How do I add a css "class=whatever" to the above email label?
        //...
        $this->add($email);     
    }
);