The maze book for programmers!
mazesforprogrammers.com

Algorithms, circle mazes, hex grids, masking, weaving, braiding, 3D and 4D grids, spheres, and more!

DRM-Free Ebook

The Buckblog

assorted ramblings by Jamis Buck

Step Three: HTML Mockups

20 February 2005 — 4-minute read

It’s taken me longer than I had expected to get to this next step, but certainly not because it was difficult. Too many other distractions! A word of advice: don’t get sick. It’s a big time suck.

So, in Step Two: Paper Sketches I shared some paper sketches I made of the intro pages of BudgetWise, my as-yet-unimplemented financial app. In this article, I’ll share the HTML mockups of those screens, talk about why they don’t look exactly like the paper sketches, and summarize some of what I learned from this process.

Login Screen

The login screen was mocked up by the following pages:

If you’ll remember, the original idea was to have the login box off to the side, slightly overlapping the “BUDGETWISE” logo across the top.

I mocked up that up, and showed it to my wife. She promptly brought me back to reality by pointing out that it looked like there was something wrong with the page. It also just didn’t look good. So the version that emerged in the mockup was a centered login box, just below the logo line.

The error state, though, is pretty much how I envisioned it.

I had originally intended the “forgot my password” option to link to a completely separate page, but after some thinking, it worked more smoothly to use some Javascript magic to put that in the same page. Just click the link to ask for your password, and a new form appears, in-place. Voilà!

For the “forgot my password” option, I also mocked up the following pages:

  • Ideal state (the user’s email was found and their login information was sent)
  • Error state (the given email address was not found)

I decided in these states to only display the action items that are relevant to the task at hand. I originally had both of these showing the “forgot password” and “signup” links, but it just doesn’t make sense to show that information here. If the user has said “tell me what my information is”, then they obviously aren’t interested in clicking the “forgot password” link again, or in signing up.

Other states

Other states I mocked up include:

Nothing exceptional to report on these-they pretty much turned out like the paper sketches (excepting the overall layout, of course). Note that the logout screen is very simplified compared to the others; like the “forgot password” screens, it only makes sense to show the login box here-if the user just logged out, they aren’t likely to wonder what their login information is, or to want to sign up anew.

Sign up

The signup screen was one that I sketched after the last article, and it is so simple that I’m not going to bother scanning and posting the sketches. Instead, I’ll show you the mockups, which are pretty much what I sketched in the first place.

On a successful sign up, the user will be automatically logged in and taken to the front page of their account (yet to be prototyped).

Conclusions

The most important thing that I learned is that I ought to show my paper sketches to my wife before I mock them up. :) She’s got a pretty good eye for design, and is great at balancing my experiments with a dash of realism.

Another thing I learned is that mocking up pages can be a lot of fun. This was a more interesting stage than I had anticipated. Part of that can be explained by the fact that I’m not a designer, and so have never spent much time learning about all that you can do with HTML and CSS. Needless to say, I learned more with every page I mocked up.

One last thing, I learned that the paper sketches can only take you so far. Unless you are using colored pencils, you can’t really show the color of the font, or the color of the borders you want to use. However, next time I do paper sketches, I’m certainly going to think about these aspects of design, and (if nothing else) annotate my ideas in the margins of the drawings. I think the HTML mock ups would have gone more smoothly if I’d had some idea of the colors and fonts I wanted to use, ahead of time.

The most frustrating realization I had during this stage was how limiting HTML and CSS is as a UI environment. Even more frustrating—the richness of the environment is limited by which platform you are on. You could draw a Venn diagram, with one circle for each browser representing the feature set of that browser, and the intersection is the area that web designers have to code for. Quite a pain. I really grew to hate IE more than ever at this point.

Moving forward, I could drop down into code-monkey mode and start wiring these screens together with Rails, but I think I’ll hold off on that. Instead, I’ll start sketching the pages for the application itself—the transaction listing, budgeting pages, and so forth. These will be much more challenging to design than these trivial pages I started with. I’m looking forward to it!

21 Feb 2004 Update: Jarkko Laine recommended that I use a non-red color for information messages instead of the same red color that I use for the errors. I totally agree—it makes much more sense to differentiate between the two states. I’ve changed the sent email and logout mocks accordingly.