AALBC Logo
  • Books
  • Authors
  • Reviews
  • Events
  • Resources
  • Forum
  • Login
×

Join or Login

Unlock exclusive content and join the conversation.

Or Use Email
Forgot password?
By signing up, you agree to our Terms of Service.

4 Books by Two Sisters Writing and Publishing

A Visual Collection

View Alphabetical List
Powerjournal Workbook #1: A 28-Day Challenge
Powerjournal Workbook #2: A 28-Day Challenge for Weight Loss
Dark Secret
God’s Answer is Know: Lessons from a Spiritual Life

Advertisements

Advertise With Us

Reach engaged Black readers—advertise your books, events, and services.

Get Started →

Company

  • About Us
  • Privacy Policy
  • Store Policies

Support & Services

  • Subscribe to Newsletter
  • Advertise with Us
  • FAQ
  • troy@aalbc.com
  • 347-692-2522

Connect

© 1997–2026, All Rights Reserved.
African American Literature Book Club, AALBC.com, LLC.
function toggleFavorite(isbn) { const btn = document.getElementById('fav-btn-' + isbn); if (!btn) return; fetch('/includes/toggle_favorite.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ isbn: isbn }) }) .then(res => res.json()) .then(data => { if (data.success) { const icon = btn.querySelector('i'); const text = btn.querySelector('.btn-text'); if (data.action === 'added') { btn.classList.add('active'); icon.classList.replace('fa-regular', 'fa-solid'); text.innerText = 'Favorited'; } else { btn.classList.remove('active'); icon.classList.replace('fa-solid', 'fa-regular'); text.innerText = 'Save to Favorites'; } } else if (data.error === 'Login required') { alert('Please sign in to save favorites!'); window.location.href = '/login.php'; } }); }