Javascript 签到表不见了?流星教程

Javascript 签到表不见了?流星教程,javascript,html,forms,meteor,Javascript,Html,Forms,Meteor,我在用流星和 在聊天框的左上角应该有一个注册表格。因为某种原因,没有。我的所有代码都与教程中的代码相同(或非常相似),但由于某些原因,它没有显示出来。这是我的密码: HTML: CSS: 有人知道这里出了什么问题吗?在编码之前,您应该已经完成了以下每个步骤: $ meteor create awesome-chat-app $ cd awesome-chat-app $ meteor remove insecure autopublish $ meteor add bootstrap accou

我在用流星和 在聊天框的左上角应该有一个注册表格。因为某种原因,没有。我的所有代码都与教程中的代码相同(或非常相似),但由于某些原因,它没有显示出来。这是我的密码:

HTML:

CSS:


有人知道这里出了什么问题吗?

在编码之前,您应该已经完成了以下每个步骤:

$ meteor create awesome-chat-app
$ cd awesome-chat-app
$ meteor remove insecure autopublish
$ meteor add bootstrap accounts-password accounts-ui
$ mrt add streams
$ rm awesome-chat-app.* //remove files added automatically
如果没有,您现在可以尝试:

$ meteor remove insecure autopublish
$ meteor add bootstrap accounts-password accounts-ui
$ mrt add streams

确保所有设备都已正确安装。

在编写代码之前,您应该完成以下每个步骤:

$ meteor create awesome-chat-app
$ cd awesome-chat-app
$ meteor remove insecure autopublish
$ meteor add bootstrap accounts-password accounts-ui
$ mrt add streams
$ rm awesome-chat-app.* //remove files added automatically
如果没有,您现在可以尝试:

$ meteor remove insecure autopublish
$ meteor add bootstrap accounts-password accounts-ui
$ mrt add streams

确保所有设备都已正确安装。

如果升级到Meteor 0.8.0,则需要:

{{>loginButtons}}而不是{{{loginButtons}}


否则你的应用程序将无法加载(如派对示例)

如果你升级到Meteor 0.8.0,你需要:

{{>loginButtons}}而不是{{{loginButtons}}


否则您的应用程序将无法加载(如parties示例)

您是否已将
帐户ui
包添加到您的项目中:
mrt添加帐户ui
?哎呀,我忘记添加了。我添加了它,现在它说“没有配置登录服务”。这是什么意思?您是否已将
帐户ui
包添加到您的项目中:
mrt添加帐户ui
?哎呀,我忘记添加了。我添加了它,现在它说“没有配置登录服务”。这是什么意思?
$ meteor remove insecure autopublish
$ meteor add bootstrap accounts-password accounts-ui
$ mrt add streams