Firefox 3.X shows hidden fields for some reason, adding display: none;

to be rid of them for sure
This commit is contained in:
Christopher Allan Webber 2011-06-05 09:14:38 -05:00
parent b5d3aec615
commit 99619a625b

View File

@ -33,7 +33,8 @@
<input type="submit" value="submit" class="button"/> <input type="submit" value="submit" class="button"/>
</div> </div>
{% if next %} {% if next %}
<input type="hidden" name="next" value="{{ next }}" class="button" /> <input type="hidden" name="next" value="{{ next }}" class="button"
style="display: none;"/>
{% endif %} {% endif %}
<p>Don't have an account yet? <a href="{{ request.urlgen('mediagoblin.auth.register') }}">Create one here!</a></p> <p>Don't have an account yet? <a href="{{ request.urlgen('mediagoblin.auth.register') }}">Create one here!</a></p>
</div> </div>