Node.js 我可以在everyauth中使用我自己的模板引擎和参数吗?

Node.js 我可以在everyauth中使用我自己的模板引擎和参数吗?,node.js,authentication,everyauth,Node.js,Authentication,Everyauth,Everyauth文档和示例应用程序提到: // a string of html; OR the name of the jade/etc-view-engine view .loginView('login.jade') 注:login.jade有一些everyauth特有的参数,everyauth似乎神奇地提供了这些参数: #login label(for=everyauth.password.loginFormFieldName) Login input(type=

Everyauth文档和示例应用程序提到:

// a string of html; OR the name of the jade/etc-view-engine view
.loginView('login.jade')
注:login.jade有一些everyauth特有的参数,everyauth似乎神奇地提供了这些参数:

  #login
    label(for=everyauth.password.loginFormFieldName) Login
    input(type='text', name=everyauth.password.loginFormFieldName, value=email)
  #password
    label(for=everyauth.password.passwordFormFieldName) Password
    input(type='password', name=everyauth.password.passwordFormFieldName)
  #submit
    input(type='submit') Login
“我的应用”中用户登录的视图执行多种操作,但并非所有操作都与登录相关。因此,我不希望在配置everyauth的同时配置登录视图

我可以省略.loginView并设置稍后显示登录表单的视图吗

谢谢