We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12e3304 + 26e8bad commit 72ee264Copy full SHA for 72ee264
chatroom/register.md
@@ -14,10 +14,10 @@ You must guide user to check their email so that they could verify their email a
14
```ts
15
async function signUpNewUser() {
16
const { data, error } = await supabase.auth.signUp({
17
- email: '<email>', // 邮箱
18
- password: '<password>', // 密码
+ email: '<email>', // Email address
+ password: '<password>', // Password
19
options: {
20
- emailRedirectTo: 'https://localhost:5173/welcome', // 邮箱重定向的地方 | 可选。
+ emailRedirectTo: 'https://localhost:5173/welcome', // Redirect link (optional).
21
},
22
})
23
}
0 commit comments