Lines Matching refs:form

280 			$form = $this->get_openid_form('login');
281 html_form('register', $form);
288 $form = $this->get_openid_form('extra');
289 html_form('complete', $form);
315 $form = new Doku_Form('openid__login', script());
316 $form->addHidden('do', 'openid');
317 $form->addHidden('mode', 'add');
318 $form->addElement(
324 $form->addElement(form_makeButton('submit', '', $this->getLang('add_button')));
325 html_form('add', $form);
342 $form = new Doku_Form('openid__login', script());
343 $form->addHidden('id', $_GET['id']);
344 $form->addHidden('do', 'openid');
346 $form->startFieldset($this->getLang('openid_account_fieldset'));
347 $form->addHidden('mode', 'extra');
349 $form->addHidden('nickname', $_REQUEST['nickname']);
350 $form->addHidden('email', $_REQUEST['email']);
351 $form->addHidden('fullname', $_REQUEST['fullname']);
353 …$form->addElement(form_makeTextField('nickname', $_REQUEST['nickname'], $lang['user'], null, $c, $…
354 $form->addElement(form_makeTextField('email', $_REQUEST['email'], $lang['email'], '', $c, $p));
355 …$form->addElement(form_makeTextField('fullname', $_REQUEST['fullname'], $lang['fullname'], '', $c,…
357 $form->addElement(form_makeButton('submit', '', $this->getLang('complete_button')));
359 $form->startFieldset($this->getLang('openid_login_fieldset'));
360 $form->addHidden('mode', 'login');
362 $form->addHidden('openid_identifier', $this->getConf('openid_identifier'));
364 …$form->addElement(form_makeTextField('openid_identifier', $_REQUEST['openid_identifier'], $this->g…
366 $form->addElement(form_makeButton('submit', '', $lang['btn_login']));
368 $form->endFieldset();
369 return $form;