About the Author
Avatar photo

Chris Sonnenberg

Chris is an accomplished software engineer with over a decade of dedicated expertise in project leadership, application architecture design, and more. With a proven track record of delivering innovative solutions, Chris excels in optimizing business operations and cost-efficiency for organizations. His drive and commitment to excellence make him a valuable asset to any project he joins.

HTMX in Action How to Build a Lightweight Signup Form

HTMX in Action: How to Build a Lightweight Signup Form

Chris Sonnenberg HTML5, Tutorial Leave a Comment

Creating dynamic, responsive web forms doesn’t have to be complicated. With HTMX, you can build a seamless signup form using just a few HTML enhancements. In this blog, I’m going to show how to make a basic signup form with HTMX.

We’ll cover how a few minor improvements to HTML allow us to make a simple form quickly while keeping state consistent. There will be only three sections to the form, but it’s easily extendable with changes in only one or two routes per change.

Event Source Architecture: Exploring Concepts with Code

Event Source Architecture: Exploring Concepts with Code

Chris Sonnenberg Architecture, Articles, Development Technologies & Tools Leave a Comment

Event Source is an implementation of the Single Source of Truth architecture. Event Sourcing, at its core, just stores events as an ordered sequence of state changes. Typically, there is an Event Store that houses multiple Event Streams. Each Event Stream is an ordered sequence of Events, with each Event being a state change for the system. Projections are just …