web.forms.PasswordResetCompleteMobileForm

Here are the examples of the python api web.forms.PasswordResetCompleteMobileForm taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: autopep8 Source File: e101_example.py
    @webapp2.cached_property
    def form(self):
        if self.is_mobile:
            return forms.PasswordResetCompleteMobileForm(self)
        else:
            return forms.PasswordResetCompleteForm(self)