我正在遵循本指南:https://www.firebase.com/docs/web/guide/login/password.html
他们有硬编码的字符串作为电子邮件和密码。
如何让用户输入自己的值并将其提交到数据库?
<form action="" onsubmit="createUser()">
Email: <input type="text" name="email"><br>
Password: <input type="password" name="password"><br>
Repeat Password: <input type="password" name="password"><br>
<input type="submit" value="Sign up" >
</form>
我上面有这个代码,并希望使用它,以便用户可以输入他们喜欢和注册的任何电子邮件。但是,文档似乎只涵盖硬编码字符串?