本文整理汇总了PHP中Captcha::makeForm方法的典型用法代码示例。如果您正苦于以下问题:PHP Captcha::makeForm方法的具体用法?PHP Captcha::makeForm怎么用?PHP Captcha::makeForm使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Captcha
的用法示例。
在下文中一共展示了Captcha::makeForm方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
public function index()
{
$postData = array('alert' => '');
Model::load('admincp/forgotpass');
// if(Session::has('userid'))
// {
// Redirect::to(ADMINCP_URL);
// }
if (Request::has('btnSend')) {
try {
forgotProcess();
$postData['alert'] = '<div class="alert alert-success">We have been send your new password to your email.</div>';
} catch (Exception $e) {
$postData['alert'] = '<div class="alert alert-warning">' . $e->getMessage() . '</div>';
}
}
$postData['captchaHTML'] = Captcha::makeForm();
System::setTitle('Forgot Password - ' . ADMINCP_TITLE);
View::make('admincp/headNonSB');
View::make('admincp/forgotpass', $postData);
View::make('admincp/footerNonSB');
}
示例2: index
public function index()
{
$postData = array('alert' => '');
Model::load('admincp/login');
// if(Session::has('userid'))
// {
// Redirect::to(ADMINCP_URL);
// }
if (Request::has('btnLogin')) {
try {
loginProcess();
Redirect::to(ADMINCP_URL);
} catch (Exception $e) {
$postData['alert'] = '<div class="alert alert-warning">' . $e->getMessage() . '</div>';
}
}
$postData['captchaHTML'] = Captcha::makeForm();
System::setTitle('Login - ' . ADMINCP_TITLE);
View::make('admincp/headNonSB');
View::make('admincp/login', $postData);
View::make('admincp/footerNonSB');
}