diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-06-05 09:14:38 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-06-05 09:14:38 -0500 |
commit | 99619a625b20d4c5825eeb52753657b088db5381 (patch) | |
tree | b3bd40888925278f4903ffb6efa9e3b7caf799a9 | |
parent | b5d3aec615fd32439c9fc708d2266dc1cdfecc9d (diff) | |
download | mediagoblin-99619a625b20d4c5825eeb52753657b088db5381.tar.lz mediagoblin-99619a625b20d4c5825eeb52753657b088db5381.tar.xz mediagoblin-99619a625b20d4c5825eeb52753657b088db5381.zip |
Firefox 3.X shows hidden fields for some reason, adding display: none;
to be rid of them for sure
-rw-r--r-- | mediagoblin/templates/mediagoblin/auth/login.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/auth/login.html b/mediagoblin/templates/mediagoblin/auth/login.html index 22a57b70..c2e27c15 100644 --- a/mediagoblin/templates/mediagoblin/auth/login.html +++ b/mediagoblin/templates/mediagoblin/auth/login.html @@ -33,7 +33,8 @@ <input type="submit" value="submit" class="button"/> </div> {% if next %} - <input type="hidden" name="next" value="{{ next }}" class="button" /> + <input type="hidden" name="next" value="{{ next }}" class="button" + style="display: none;"/> {% endif %} <p>Don't have an account yet? <a href="{{ request.urlgen('mediagoblin.auth.register') }}">Create one here!</a></p> </div> |