diff options
Diffstat (limited to 'mediagoblin/oauth/forms.py')
-rw-r--r-- | mediagoblin/oauth/forms.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mediagoblin/oauth/forms.py b/mediagoblin/oauth/forms.py new file mode 100644 index 00000000..94c7cb52 --- /dev/null +++ b/mediagoblin/oauth/forms.py @@ -0,0 +1,7 @@ +import wtforms + +class AuthorizeForm(wtforms.Form): + """ Form used to authorize the request token """ + + oauth_token = wtforms.HiddenField("oauth_token") + oauth_verifier = wtforms.HiddenField("oauth_verifier") |