php 自定义页面上的登录表单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 自定义页面上的登录表单相关的知识,希望对你有一定的参考价值。

I found a interesting question on Magento forums. Some of the clients would like to see the login box on home page. Here is a quick howto.

Open customer.xml from layout folder, and locate (around line 91)

<reference name=”content”>
<block type=”customer/form_login” name=”customer_form_login” template=”customer/form/login.phtml”/>
</reference>

Now open cms.xml and locate (around line 46)

<reference name=”content”>
<block type=”cms/page” name=”cms_page”/>
</reference>

Now copy the
<block type=”customer/form_login” name=”customer_form_login” template=”customer/form/login.phtml”/>

from customer.xml to cms.xml making it like

<reference name=”content”>
<block type=”customer/form_login” name=”customer_form_login” template=”customer/form/login.phtml”/>
<block type=”cms/page” name=”cms_page”/>
</reference>

That’s it. Play with the rest.

以上是关于php 自定义页面上的登录表单的主要内容,如果未能解决你的问题,请参考以下文章

php 在登录表单下添加自定义链接

是否可以使用jsp登录表单作为spring security的自定义登录表单

Spring Security 默认登录表单不会被自定义登录页面替换

自定义登录表单无法使用 Spring Security

.submit 上的 jQuery 检查数据库中是不是存在登录并处理表单

无法在 Spring Security 中用自定义替换标准登录表单