Sign-up option hard to find
I am getting emails from people having difficulties finding the option for registering a new account. Due to the size and position of the text it appears like 'small print'. Consider re-design.
Don't have an account yet? Please use your social account, or sign up using an email address.
@sliob and I will have a look, but GeoKey is also open source, so pull requests are welcome!
@julia-altenbuchner This may be a little late (by 6+ months) but in case this is still of interest, we're using GeoKey and had the same issue. Our solution was just to add this block to settings.py:
TEMPLATES[0]['DIRS'] = (
normpath(join(dirname(dirname(abspath(__file__))), '../theme/templates')),
normpath(join(SITE_ROOT, 'templates')),
)
This treats your own custom Jinja templates in the theme directory as canonical, and uses the built-in GeoKey templates as a fallback.