forms.py 217 B

12345678
  1. import wtforms
  2. class AuthorizeForm(wtforms.Form):
  3. """ Form used to authorize the request token """
  4. oauth_token = wtforms.HiddenField("oauth_token")
  5. oauth_verifier = wtforms.HiddenField("oauth_verifier")