在我写几个问题之前,我需要说我尝试以此处描述的方式进行自定义drupal登录:https ://stackoverflow.com/questions/19737229/custom-login-form-in-a-drupal -7
因此,这意味着要覆盖http://example.org/user登录页面。这在我的情况下不起作用,因为我可以隐藏页眉和页脚(因为它们以不同的方式构建而无需使用 drupal 块)。
现在我转向不同的解决方案。我创建了一个自定义内容类型“登录”和一个自定义模板文件,如下所示:
现在我需要一个 drupal 登录功能来集成到我的自定义表单中。
这是HTML代码:
<div id="form-wrapper">
<form id="login">
<h1>billing & support</h1>
<input type="email" id="email" name="email" placeholder="Type your email">
<input type="password" id="password" name="password" placeholder="Type your password">
<input type="submit" value="Login">
<a href="#" class="reset-pass">Forgot password?</a>
</form>
</div>
现在我需要一个 PHP 代码来使这个登录表单有用。欢迎各种帮助。