reset_password_form.inc.php

来自「This is the script which used on 10minut」· PHP 代码 · 共 27 行

PHP
27
字号
<?php

/** 
 * GentleSource Comment Script
 * 
 * (C) Ralf Stadtaus http://www.gentlesource.com/
 */


$form->addElement('hidden', 'c');
$form->addElement('password', 'password', $t12l['text']['txt_password']);
$form->addElement('password', 'repeat', $t12l['text']['txt_password_repeat']);
$form->addElement('submit', 'save', $t12l['text']['txt_submit']);

$form->addRule('password', $t12l['text']['txt_enter_password'], 'required');
$form->addRule('repeat', $t12l['text']['txt_repeat_password'], 'required');
$form->addRule(array('password', 'repeat'), $t12l['text']['txt_passwords_do_not_match'], 'compare');








?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?