4

如何覆盖 Apache Tynamo 模板生成的 HTML?

我目前正在转换我的页面以与tapestry-bootstrap 一起使用,登录表单看起来有点难看。

4

1 回答 1

7

与其尝试自定义或重用提供的表单,不如编写自己的登录页面和登录表单。

超级简单,你可以从复制这个开始:

这只是一个示例登录页面,请确保删除不需要的任何内容。

之后别忘了告诉 Tapestry-security 现在你有了自己的登录页面:

@Contribute(SymbolProvider.class)
@ApplicationDefaults
public static void applicationDefaults(MappedConfiguration<String, Object> configuration)
{
    // Tynamo's tapestry-security (Shiro) module configuration
    configuration.add(SecuritySymbols.LOGIN_URL, "/signin");
}

就是这样。

于 2012-05-28T15:45:52.153 回答