What really bothers me is that most of time when the date of birth is asked it is done as a way to determine some age criteria. The same could be achieved simply asking "are you older than N years old? [Yes] or [No]". For example, I want to buy Quake on the Nintendo eShop. The website wants to know my age in order to show me a age restricted game. So it will always ask me the age same question even if I have already…
I also enter an absurdly old date, and usually I'll try setting an impossible day/month combo like February 31st... sometimes it actually works!
Asking for a date of birth (2013)
61–70 of 97 posts
Re: Asking for a date of birth (2013)
#62Earlier quoted context omitted.
Even better, just have the same value for each
Yup. 11/11 for me. Can't go to far wrong. Just wish I was born in 2011 (for reasons other than having the same number!) :)
Re: Asking for a date of birth (2013)
#63Re: Asking for a date of birth (2013)
#64Earlier quoted context omitted.
I also enter an absurdly old date, and usually I'll try setting an impossible day/month combo like February 31st... sometimes it actually works!
I always go for January 1st, 1970. It is (nearly) always accepted on the form because it is a perfectly valid date to be born, but I like to imagine that some analyst is pulling their hair out thinking they have a null coalescing bug.
Re: Asking for a date of birth (2013)
#65author here, just to note our current design pattern for this is slightly updated: https://design-system.service.gov.uk/components/date-input/
I was wondering why you chose to use the placeholder attribute to show labels rather than the (afaik recommended) usage of showing example values. The form shows example values, but outside the input fields. Did you test both ways and this turned out to be better after all, or this was just an implementation which worked fine in testing so it stuck?
Re: Asking for a date of birth (2013)
#66If there is even less information available the same goes for the month of the year. I have seen passports where people are born on 0-0-1970
Must be a frustrating situation in many software systems.
Re: Asking for a date of birth (2013)
#67I've seen some US government forms use [01] [Jan] [1970] where [01]: one- or two-digit day, typed manually [Jan]: three-letter month, picked from a dropdown [1970]: four-digit year, typed manually I think this is a good (the best?) presentation. By using a manual day entry instead of providing a dropdown, as the programmer you can avoid requiring client-side logic to restrict the number of days displayed in the dropd…
I don't think so. It has problems with i18n. For example, the abbreviation for December is "Dic" in spanish and "Dez" in German, not "Dec" as in english.
Re: Asking for a date of birth (2013)
#68What really bothers me is that most of time when the date of birth is asked it is done as a way to determine some age criteria. The same could be achieved simply asking "are you older than N years old? [Yes] or [No]". For example, I want to buy Quake on the Nintendo eShop. The website wants to know my age in order to show me a age restricted game. So it will always ask me the age same question even if I have already…
> Is this a by-product of some compliance or self-regulatory requirement like ESRB? Yes, Steam addressed this an announcement a few years ago: > Q: Why do you KEEP asking my damn age throughout the store? > A: We're with you on this. Unfortunately, many rating agencies have rules that stipulate that we cannot save your age for longer than a single browsing session. It's frustrating, but know we're filling out those a…
Re: Asking for a date of birth (2013)
#69It's 2022 and input=date should be used instead for date pickers on the Web. https://github.com/alphagov/govuk-design-system-backlog/issu...
The interface looks usually nice, but input=date is horrible to manipulate in many implementations. On iOS choosing year/month is the rolodex interface, as slow and clunky as usual, especially if you’re flipping it for 40~60 years. On android it moves month by month at most, so it’s even funnier to swipe for decades. I think the type=number alternative with validation + confirmation text with the month in letters is…
Re: Asking for a date of birth (2013)
#70Earlier quoted context omitted.
I also enter an absurdly old date, and usually I'll try setting an impossible day/month combo like February 31st... sometimes it actually works!
I always go for January 1st, 1970. It is (nearly) always accepted on the form because it is a perfectly valid date to be born, but I like to imagine that some analyst is pulling their hair out thinking they have a null coalescing bug.