本文整理汇总了PHP中Forms::getLoginForm方法的典型用法代码示例。如果您正苦于以下问题:PHP Forms::getLoginForm方法的具体用法?PHP Forms::getLoginForm怎么用?PHP Forms::getLoginForm使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Forms
的用法示例。
在下文中一共展示了Forms::getLoginForm方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getMainSection
/**
* Generate the middle section of the home page
*/
protected function getMainSection()
{
$nickName = empty($_COOKIE['n']) ? '' : $_COOKIE['n'];
$form = Forms::getLoginForm($nickName);
$js = Forms::getLoginFormJs();
$this->addInlineJs($js);
return <<<HTML
<div class="container theme-showcase" role="main">
<div class="jumbotron">
\t<h3>Sign In</h3>
{$form}
</div>
</div>
HTML;
}
示例2: getLoginModal
/**
* Generate the HTML for the login modal window
*/
private function getLoginModal()
{
$nickName = htmlentities($_COOKIE['n']);
$loginForm = Forms::getLoginForm($nickName);
$html = <<<HTML
<div id="loginModal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Sign In to this Test Community</h4>
\t\t<h4 id="modalMsg"></h4>
</div>
<div class="modal-body">
{$loginForm}
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
HTML;
$this->addModalWindow($html);
}