diff --git a/Modern Development/Service Portal Widgets/My Reminders/README.md b/Modern Development/Service Portal Widgets/My Reminders/README.md
new file mode 100644
index 0000000000..39b217f69b
--- /dev/null
+++ b/Modern Development/Service Portal Widgets/My Reminders/README.md
@@ -0,0 +1,31 @@
+# Service Portal Reminder Widget
+
+A simple custom ServiceNow Service Portal widget for viewing and creating personal reminders.
+
+## Features
+
+- This uses **ServiceNow's OOB Reminder table**. Table name : 'reminder'
+- Displays a list of reminders for the current user.
+- Provides a form to create new reminders.
+- Allows associating reminders with any Task record.
+- Auto-refreshes the list after a new reminder is created.
+
+
+## How to create
+
+1. Navigate to **Service Portal > Widgets**.
+2. Click **Create a new widget**.
+3. Set the **Widget Name** (e.g. 'My Reminders') and **ID** (e.g., 'reminder-widget').
+4. Copy and paste the provided HTML, CSS, Client Script, and Server Script into their respective tabs.
+5. Save the widget.
+
+## How to Use
+
+1. Open your target portal page in the Service Portal Designer.
+2. Find your widget in the "Widgets" filter on the left.
+3. Drag and dropp the widget onto the page.
+
+## Screenshots
+
+
+
diff --git a/Modern Development/Service Portal Widgets/My Reminders/reminders.html b/Modern Development/Service Portal Widgets/My Reminders/reminders.html
new file mode 100644
index 0000000000..9688cb7ca0
--- /dev/null
+++ b/Modern Development/Service Portal Widgets/My Reminders/reminders.html
@@ -0,0 +1,85 @@
+
+ Task: {{reminder.task_display || 'N/A'}}
+ Action: Send an {{reminder.using}} {{reminder.remind_me}} minutes before {{reminder.field_display}}.
+
Notes: {{reminder.notes}}
+