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 SignUpForm.tsx

authored by

Evan Huang and committed by
GitHub
347a9457 a6eeb2df

+1 -1
+1 -1
components/SignUpForm.tsx
··· 235 235 /> 236 236 </div> 237 237 {error && <div className="text-sm text-red-500">{error}</div>} 238 - <Button type="submit" className="w-full bg-[#0066ff] hover:bg-[#0047cc]" disabled={isLoading}> 238 + <Button type="submit" className="w-full bg-[#0066ff] hover:bg-[#0047cc] text-white" disabled={isLoading}> 239 239 {isLoading ? "Creating account..." : "Create account"} 240 240 </Button> 241 241 </div>