[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
backup
/
administrator
/
templates
/
hathor
/
html
/
mod_login
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 default.php
2,043 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: default.php
<?php /** * @package Joomla.Administrator * @subpackage Template.hathor * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::_('behavior.keepalive'); ?> <form action="<?php echo JRoute::_('index.php', true, $params->get('usesecure')); ?>" method="post" id="form-login"> <fieldset class="loginform"> <label id="mod-login-username-lbl" for="mod-login-username"><?php echo JText::_('JGLOBAL_USERNAME'); ?></label> <input name="username" id="mod-login-username" type="text" size="15" autofocus="true" /> <label id="mod-login-password-lbl" for="mod-login-password"><?php echo JText::_('JGLOBAL_PASSWORD'); ?></label> <input name="passwd" id="mod-login-password" type="password" size="15" /> <?php if (count($twofactormethods) > 1): ?> <div class="control-group"> <div class="controls"> <label for="mod-login-secretkey"> <?php echo JText::_('JGLOBAL_SECRETKEY'); ?> </label> <input name="secretkey" autocomplete="one-time-code" tabindex="3" id="mod-login-secretkey" type="text" class="input-medium" size="15"/> </div> </div> <?php endif; ?> <?php if (!empty ($langs)) : ?> <label id="mod-login-language-lbl" for="lang"><?php echo JText::_('MOD_LOGIN_LANGUAGE'); ?></label> <?php echo $langs; ?> <?php endif; ?> <div class="clr"></div> <div class="button-holder"> <div class="button1"> <div class="next"> <a href="#" onclick="document.getElementById('form-login').submit();"> <?php echo JText::_('MOD_LOGIN_LOGIN'); ?></a> </div> </div> </div> <div class="clr"></div> <input type="submit" class="hidebtn" value="<?php echo JText::_('MOD_LOGIN_LOGIN'); ?>" /> <input type="hidden" name="option" value="com_login" /> <input type="hidden" name="task" value="login" /> <input type="hidden" name="return" value="<?php echo $return; ?>" /> <?php echo JHtml::_('form.token'); ?> </fieldset> </form>