X-Git-Url: https://dev.renevier.net/gitweb.cgi?a=blobdiff_plain;f=application%2Fforms%2FUser.php;h=ca3a91b617887447f4f27eef93cfd2bbd8a47a61;hb=f35ee92c9c18e4604be3a6ed8590cff6505a3200;hp=b74258abd41148369fad6a05306b50ba513a92b2;hpb=190fd621df4920c56a422c03663874cddaa67d64;p=syj.git diff --git a/application/forms/User.php b/application/forms/User.php index b74258a..ca3a91b 100644 --- a/application/forms/User.php +++ b/application/forms/User.php @@ -7,9 +7,11 @@ class Syj_Form_User extends Syj_Form_TableAbstract public function init() { $translator = $this->getTranslator(); + $desc = $translator->translate("only letters, numbers, underscores or dots"); $name = array('Text', 'user_pseudo', array( 'label' => __("user name"), - 'attribs' => array('maxlength' => '20'), + 'attribs' => array('maxlength' => '20', 'autocomplete' => 'off'), + 'description' => $desc, 'validators' => array(new Zend_Validate_StringLength(0, 20), new Zend_Validate_Regex('/^[a-zA-Z0-9_\.]+$/')), 'required' => true @@ -38,14 +40,16 @@ class Syj_Form_User extends Syj_Form_TableAbstract $this->setMainElements(array($name, $pass, $pass_confirm, $email)); - $anchor = $this->getView()->Anchor("termsofuse", $translator->translate("terms of use"), array('id' => 'user_termsofuse_anchor')); + $anchor = $this->getView()->Anchor("termsofuse?format=raw", + $translator->translate("terms of use"), + array('id' => 'user_termsofuse_anchor')); $text = $translator->translate("I've read and accepted %s"); $text = vsprintf($text, $anchor); $this->addElement('Checkbox', 'user_accept', array("label" => $text, 'decorators' => array( 'ViewHelper', 'label', - array('HtmlTag', array('tag' => 'div'))), + array('HtmlTag', array('tag' => 'div', 'id' => 'user_accept_container'))), 'validators' => array(new Zend_Validate_Identical('1')))); $decorator = $this->user_accept->getDecorator('Zend_Form_Decorator_Label');