Fixes for small bugs
[mediagoblin.git] / mediagoblin / oauth / forms.py
1 import wtforms
2
3 class AuthorizeForm(wtforms.Form):
4 """ Form used to authorize the request token """
5
6 oauth_token = wtforms.HiddenField("oauth_token")
7 oauth_verifier = wtforms.HiddenField("oauth_verifier")