One of the things that bothers me about Drupal are the /user page and the /user/uid/edit pages. By default, the /user page is totally useless, it just shows when the user account was created. Most of the small websites I create don't need a page like this one, it only adds confusion to users so I usually have to remove it. On medium/big websites I usually override this page with some other functionality. If you add fields to the user, this page will show them up, again, probably not very useful.
If you do want to use the /user page, you either have to: 1. Install Panels or other module that takes over this page. 2. Do some heavy theming. 3. Add blocks using Context or other solution.
So IMHO the /user page: 1. By default it's almost useless. 2. If you don't want it, it's not easy to remove it or Drupal "forces" you to do something with it. 3. If you want it, you need to go to contrib or work on your theme to do something useful with it. 4. Adds extra work for the site builder / developer because they have to decide what to do with this page.
The /user/uid/edit page is another beautiful thing. This page has several issues. 1. There's no consistency on the edit page, specially when contrib modules start adding pages or settings to this page. You can end up having a huge mess in this page, settings like username, password, image profile, fields, localization, etc. might be better living on separate pages. 2. It's hard to hack the path, because so many contrib modules use it. 3. It's sitting along the /user page, so if you decide to use the /user page as a "Dashboard", or give it another use, you then have a horrible UX by just having the "Edit" tab sitting there. Moving it or disabling it adds extra work for the developer, forget the site builder, it's just not easy without touching code.
What am I proposing? 1. Remove the /user page from the user module. 2. Move the /user page to another core module which can be disabled by default, we can call it "User Profile Page" or whatever you like. As long as Drupal doesn't force me to use it. 3. Change the /user/uid/edit page to something like /settings/uid, contrib modules can create their user configuration pages under settings/uid/foo 4. Instead of redirecting to the /user page on login, redirect to the frontpage.
Finally, I could be wrong about this, but I don't think neither Wordpress nor Joomla have a /user page like Drupal has.
Recent comments
Thanks!! Easiest for me to just give permission for anon users to see the admin theme. That worked. It's just for this one page.
Link field in a Content Type is malformed for annonymous user- Permission issue?
It looks like the screenshot of what you show it should look like is the admin theme whereas what they see is the front end theme. By default, such users won't have permissions to see the...
Link field in a Content Type is malformed for annonymous user- Permission issue?
I've added a new recipe. The recipe has no PHP code. It has two module dependencies (one of those depends on another contrib module and both depend on core modules that are normally enabled)...
The Future of Configuration Recipes for Backdrop CMS