-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
236 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
app/design/adminhtml/default/default/template/luigifab/versioning/forgotpassword.phtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
/** | ||
* Created S/20/02/2016 | ||
* Updated L/22/02/2016 | ||
* Version 2 | ||
* | ||
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info> | ||
* https://redmine.luigifab.info/projects/magento/wiki/versioning | ||
* | ||
* This program is free software, you can redistribute it or modify | ||
* it under the terms of the GNU General Public License (GPL) as published | ||
* by the free software foundation, either version 2 of the license, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but without any warranty, without even the implied warranty of | ||
* merchantability or fitness for a particular purpose. See the | ||
* GNU General Public License (GPL) for more details. | ||
*/ | ||
|
||
$lang = substr(Mage::app()->getLocale()->getLocaleCode(), 0, 2); | ||
|
||
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang ?>" lang="<?php echo $lang ?>" style="height:100%;"> | ||
<head> | ||
<title><?php echo $this->helper('adminhtml')->__('Log into Magento Admin Page'),' - ',Mage::getStoreConfig('design/head/default_title') ?></title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta http-equiv="Content-Script-Type" content="text/javascript" /> | ||
<meta http-equiv="Content-Style-Type" content="text/css" /> | ||
<meta http-equiv="Content-Language" content="<?php echo $lang ?>" /> | ||
<link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="<?php echo $this->getSkinUrl('reset.css') ?>" /> | ||
<link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="<?php echo $this->getSkinUrl('boxes.css') ?>" /> | ||
<link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="<?php echo $this->getSkinUrl('css/luigifab/versioning/styles.min.css') ?>" /> | ||
<link rel="icon" type="image/x-icon" href="<?php echo $this->getSkinUrl('favicon.ico') ?>" /> | ||
<script type="text/javascript" src="<?php echo $this->getJsUrl('prototype/prototype.js') ?>"></script> | ||
<script type="text/javascript" src="<?php echo $this->getJsUrl('prototype/validation.js') ?>"></script> | ||
<script type="text/javascript" src="<?php echo $this->getJsUrl('mage/adminhtml/form.js') ?>"></script> | ||
<script type="text/javascript" src="<?php echo $this->getJsUrl('mage/captcha.js') ?>"></script> | ||
</head> | ||
|
||
<body id="page-login" onload="document.getElementById('email').focus();"> | ||
<div class="login-container"> | ||
<div class="login-box"> | ||
<form method="post" action="" id="loginForm"> | ||
<div class="login-form"> | ||
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" /> | ||
<h2><?php echo $this->helper('adminhtml')->__('Forgot your user name or password?') ?></h2> | ||
<div id="messages"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div> | ||
<div class="input-box forgot-password"> | ||
<label for="email"><?php echo $this->helper('adminhtml')->__('Email Address:') ?></label> | ||
<br /><input type="text" name="email" class="required-entry input-text validate-email" id="email" style="width:461px;" /> | ||
</div> | ||
<?php echo $this->getChildHtml('form.additional.info') ?> | ||
<div class="clear"></div> | ||
<div class="form-buttons"> | ||
<a href="<?php echo $this->getUrl('adminhtml', array('_nosecret' => true)) ?>" class="left"><?php echo $this->helper('adminhtml')->__('Back to Login') ?></a> | ||
<input type="submit" class="form-button" value="<?php echo $this->helper('adminhtml')->__('Retrieve Password') ?>" /> | ||
</div> | ||
</div> | ||
<p class="legal"><?php echo $this->helper('adminhtml')->__('Magento is a trademark of Magento Inc. Copyright © %s Magento Inc.', date('Y')) ?></p> | ||
</form> | ||
<div class="bottom"></div> | ||
<script type="text/javascript"> | ||
var loginForm = new varienForm('loginForm'); | ||
</script> | ||
</div> | ||
</div> | ||
<p class="credits"><?php echo $this->__('Martian sunset by Spirit.') ?></p> | ||
</body> | ||
</html> |
74 changes: 74 additions & 0 deletions
74
app/design/adminhtml/default/default/template/luigifab/versioning/login.phtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<?php | ||
/** | ||
* Created S/20/02/2016 | ||
* Updated L/22/02/2016 | ||
* Version 2 | ||
* | ||
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info> | ||
* https://redmine.luigifab.info/projects/magento/wiki/versioning | ||
* | ||
* This program is free software, you can redistribute it or modify | ||
* it under the terms of the GNU General Public License (GPL) as published | ||
* by the free software foundation, either version 2 of the license, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but without any warranty, without even the implied warranty of | ||
* merchantability or fitness for a particular purpose. See the | ||
* GNU General Public License (GPL) for more details. | ||
*/ | ||
|
||
$lang = substr(Mage::app()->getLocale()->getLocaleCode(), 0, 2); | ||
|
||
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang ?>" lang="<?php echo $lang ?>" style="height:100%;"> | ||
<head> | ||
<title><?php echo $this->helper('adminhtml')->__('Log into Magento Admin Page'),' - ',Mage::getStoreConfig('design/head/default_title') ?></title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta http-equiv="Content-Script-Type" content="text/javascript" /> | ||
<meta http-equiv="Content-Style-Type" content="text/css" /> | ||
<meta http-equiv="Content-Language" content="<?php echo $lang ?>" /> | ||
<link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="<?php echo $this->getSkinUrl('reset.css') ?>" /> | ||
<link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="<?php echo $this->getSkinUrl('boxes.css') ?>" /> | ||
<link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="<?php echo $this->getSkinUrl('css/luigifab/versioning/styles.min.css') ?>" /> | ||
<link rel="icon" type="image/x-icon" href="<?php echo $this->getSkinUrl('favicon.ico') ?>" /> | ||
<script type="text/javascript" src="<?php echo $this->getJsUrl('prototype/prototype.js') ?>"></script> | ||
<script type="text/javascript" src="<?php echo $this->getJsUrl('prototype/validation.js') ?>"></script> | ||
<script type="text/javascript" src="<?php echo $this->getJsUrl('mage/adminhtml/form.js') ?>"></script> | ||
<script type="text/javascript" src="<?php echo $this->getJsUrl('mage/captcha.js') ?>"></script> | ||
</head> | ||
|
||
<body id="page-login" onload="document.getElementById('username').focus();"> | ||
<div class="login-container"> | ||
<div class="login-box"> | ||
<form method="post" action="" id="loginForm"> | ||
<div class="login-form"> | ||
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" /> | ||
<h2><?php echo $this->helper('adminhtml')->__('Log in to Admin Panel') ?></h2> | ||
<div id="messages"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div> | ||
<div class="input-box input-left"> | ||
<label for="username"><?php echo $this->helper('adminhtml')->__('User Name:') ?></label> | ||
<br /><input type="text" name="login[username]" class="required-entry input-text" id="username" /> | ||
</div> | ||
<div class="input-box input-right"> | ||
<label for="login"><?php echo $this->helper('adminhtml')->__('Password:') ?></label> | ||
<br /><input type="password" name="login[password]" class="required-entry input-text" id="login" /> | ||
</div> | ||
<?php echo $this->getChildHtml('form.additional.info') ?> | ||
<div class="clear"></div> | ||
<div class="form-buttons"> | ||
<a class="left" href="<?php echo $this->helper('adminhtml')->getUrl('adminhtml/index/forgotpassword', array('_nosecret' => true)) ?>"><?php echo $this->helper('adminhtml')->__('Forgot your password?') ?></a> | ||
<input type="submit" class="form-button" value="<?php echo $this->helper('adminhtml')->__('Login') ?>" /> | ||
</div> | ||
</div> | ||
<p class="legal"><?php echo $this->helper('adminhtml')->__('Magento is a trademark of Magento Inc. Copyright © %s Magento Inc.', date('Y')) ?></p> | ||
</form> | ||
<div class="bottom"></div> | ||
<script type="text/javascript"> | ||
var loginForm = new varienForm('loginForm'); | ||
</script> | ||
</div> | ||
</div> | ||
<p class="credits"><?php echo $this->__('Martian sunset by Spirit.') ?></p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.