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

authored by

Evan Huang and committed by
GitHub
a6eeb2df b9531535

+2 -2
+2 -2
components/ResetForm.tsx
··· 146 146 <div className="text-sm text-red-500">{error}</div> 147 147 )} 148 148 149 - <Button type="submit" className="w-full bg-[#0066ff] hover:bg-[#0047cc]" disabled={isLoading}> 149 + <Button type="submit" className="w-full bg-[#0066ff] hover:bg-[#0047cc] text-white" disabled={isLoading}> 150 150 {isLoading 151 151 ? "Processing..." 152 152 : step === "request" ··· 157 157 <div className="text-center text-sm"> 158 158 {step === "request" ? ( 159 159 <> 160 - Have an account? 160 + Have an account?{" "} 161 161 <button 162 162 type="button" 163 163 onClick={() => router.push("/sign-in")}