123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- use fec\helpers\CRequest;
- ?>
- <div class="loginForm">
- <form action="http://demo.fancyecommerce.com/fecadmin/test/index" method="post">
- <?php echo CRequest::getCsrfInputHtml(); ?>
- <input type="text" name="login[username]" />
- <input type="text" name="login[password]" />
- <input type="text" name="login[captcha]" />
- <input type="submit" />
- </form>
- </div>
- <?php
- foreach($_COOKIE as $key=>$v){
- echo $key."=>";
- var_dump($v);
- echo "<br>";
- }
- ?>
|