@@ -36,7 +36,7 @@ Customizable authentication UI component with custom themes and extensible style
36
36
- [ Social Providers] ( #social-providers )
37
37
- [ Options] ( #options )
38
38
- [ Supported Views] ( #supported-views )
39
- - [ Anonymous User ] ( #anonymous-user )
39
+ - [ Anonymous Sign-ins ] ( #anonymous-sign-ins )
40
40
- [ Customization] ( #customization )
41
41
- [ Predefined themes] ( #predefined-themes )
42
42
- [ Switch theme variations] ( #switch-theme-variations )
@@ -210,6 +210,7 @@ The Auth component is currently shipped with the following views:
210
210
- [ Social Login] ( https://supabase.com/docs/guides/auth/social-login )
211
211
- [ Update password] ( https://supabase.com/docs/guides/auth/auth-password-reset#update-password )
212
212
- [ Forgotten password] ( https://supabase.com/docs/guides/auth/auth-password-reset#sending-password-reset-email )
213
+ - [ Anonymous Sign-ins] ( https://supabase.com/docs/guides/auth/auth-anonymous )
213
214
214
215
``` html
215
216
<template >
@@ -232,10 +233,11 @@ const redirectTo = computed(() => {
232
233
</script >
233
234
234
235
```
235
- ### Anonymous User
236
+
237
+ ### Anonymous Sign-ins
236
238
237
239
The Auth component is currently support [ Anonymous user login] ( https://supabase.com/docs/guides/auth/auth-anonymous#sign-in-anonymously ) .
238
- For this you need to create an anonymous user
240
+ For this you need to create an anonymous user
239
241
240
242
``` js
241
243
const { data , error } = await supabase .auth .signInAnonymously ()
@@ -244,8 +246,7 @@ const { data, error } = await supabase.auth.signInAnonymously()
244
246
[ Enable manual linking] ( https://supabase.com/dashboard/project/_/settings/auth ) in supabase
245
247
246
248
Currently works for magic link and social login.
247
- If you use password login, you need user to update password after he
248
-
249
+ If you use password login, you need user to update password after he
249
250
250
251
## Customization
251
252
0 commit comments