blob: 94c7cb52da7e0379b565a3cd02e6f97f16f4979b (
plain)
1
2
3
4
5
6
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")
|