One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

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

Update LoginForm.tsx

authored by

Evan Huang and committed by
GitHub
b9531535 88547bdc

+1 -1
+1 -1
components/LoginForm.tsx
··· 145 145 {error && ( 146 146 <div className="text-sm text-red-500">{error}</div> 147 147 )} 148 - <Button type="submit" className="w-full bg-[#0066ff] hover:bg-[#0047cc]" disabled={isLoading}> 148 + <Button type="submit" className="w-full bg-[#0066ff] hover:bg-[#0047cc] text-white" disabled={isLoading}> 149 149 {isLoading ? "Signing in..." : "Login"} 150 150 </Button> 151 151 </div>