Barazo default frontend barazo.forum
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(auth): add name="handle" to login input for cross-app autocomplete (#149)

Implements the ATProto ecosystem convention for handle input fields
so browsers can autocomplete handles across ATProto apps.

Ref: https://discourse.atprotocol.community/t/644

authored by

Guido X Jansen and committed by
GitHub
4d1d76ad e31a7788

+1
+1
src/app/login/page.tsx
··· 115 115 </label> 116 116 <input 117 117 id="handle" 118 + name="handle" 118 119 type="text" 119 120 value={handle} 120 121 onChange={(e) => setHandle(e.target.value)}