repo.or.cz
/
larjonas-mediagoblin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove <br/> from safe string indicating that CSRF cooking is missing.
[larjonas-mediagoblin.git]
/
mediagoblin
/
oauth
/
forms.py
blob
94c7cb52da7e0379b565a3cd02e6f97f16f4979b
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"
)