From d990eb5404da99192d9d74127661ccf3dad63dc5 Mon Sep 17 00:00:00 2001 From: neweracy Date: Sat, 16 Aug 2025 11:05:21 +0000 Subject: [PATCH 1/2] fix: update Codecov badge link in README to reflect correct repository --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c30648e..a08b5fd 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A comprehensive React Native (Expo) template powered by Ignite CLI and Parse Server, providing production-ready authentication solutions including email/password authentication, Google Sign-In integration, session persistence, and password reset functionality. [![Build Status](https://img.shields.io/github/actions/workflow/status/your-org/ignite-parse-auth-kit/ci.yml?branch=main&style=flat-square)](https://github.com/your-org/ignite-parse-auth-kit/actions) -[![Coverage](https://codecov.io/gh/your-org/ignite-parse-auth-kit/branch/main/graph/badge.svg?style=flat-square)](https://codecov.io/gh/neweracy/ignite-parse-auth-kit) +[![codecov](https://codecov.io/gh/neweracy/IgniteParseAuthKit/graph/badge.svg?token=JCS7VCWX7E)](https://codecov.io/gh/neweracy/IgniteParseAuthKit) [![npm version](https://img.shields.io/npm/v/ignite-parse-auth-kit.svg?style=flat-square)](https://www.npmjs.com/package/ignite-parse-auth-kit) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](CONTRIBUTING.md) From 6323ae7b0480af5d96ae8f8c35be3d84815e8536 Mon Sep 17 00:00:00 2001 From: neweracy Date: Sat, 16 Aug 2025 11:08:34 +0000 Subject: [PATCH 2/2] feat: enhance authentication screens with error handling and improved UI components --- README.md | 79 ++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 52 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index a08b5fd..dd2337c 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,7 @@ The AuthContext provides a comprehensive API for handling all authentication sce ### Code Examples #### Email/Password Login + ```tsx import { useAuth } from '@/context/AuthContext' @@ -124,18 +125,22 @@ export function LoginScreen() { } return ( - // Your UI components here - + + {/* Your login form UI here */} +