Remove <br/> from safe string indicating that CSRF cooking is missing.
[larjonas-mediagoblin.git] / mediagoblin / oauth / forms.py
blob94c7cb52da7e0379b565a3cd02e6f97f16f4979b
1 import wtforms
3 class AuthorizeForm(wtforms.Form):
4 """ Form used to authorize the request token """
6 oauth_token = wtforms.HiddenField("oauth_token")
7 oauth_verifier = wtforms.HiddenField("oauth_verifier")