diff options
Diffstat (limited to 'docs/_build/html/_sources/autoapi/app/forms')
-rw-r--r-- | docs/_build/html/_sources/autoapi/app/forms/app_forms/index.rst.txt | 107 | ||||
-rw-r--r-- | docs/_build/html/_sources/autoapi/app/forms/index.rst.txt | 15 |
2 files changed, 122 insertions, 0 deletions
diff --git a/docs/_build/html/_sources/autoapi/app/forms/app_forms/index.rst.txt b/docs/_build/html/_sources/autoapi/app/forms/app_forms/index.rst.txt new file mode 100644 index 0000000..5afa9c2 --- /dev/null +++ b/docs/_build/html/_sources/autoapi/app/forms/app_forms/index.rst.txt @@ -0,0 +1,107 @@ +:mod:`app.forms.app_forms` +========================== + +.. py:module:: app.forms.app_forms + + +Module Contents +--------------- + +Classes +~~~~~~~ + +.. autoapisummary:: + + app.forms.app_forms.MyForm + app.forms.app_forms.UserSignUp + app.forms.app_forms.UserLogIn + + + + +.. class:: MyForm(formdata=_Auto, **kwargs) + + + Bases: :py:obj:`flask_wtf.FlaskForm` + + Flask-specific subclass of WTForms :class:`~wtforms.form.Form`. + + If ``formdata`` is not specified, this will use :attr:`flask.request.form` + and :attr:`flask.request.files`. Explicitly pass ``formdata=None`` to + prevent this. + + .. attribute:: name + + + + + .. attribute:: email + + + + + .. attribute:: subject + + + + + .. attribute:: body + + + + + +.. class:: UserSignUp(formdata=_Auto, **kwargs) + + + Bases: :py:obj:`flask_wtf.FlaskForm` + + Flask-specific subclass of WTForms :class:`~wtforms.form.Form`. + + If ``formdata`` is not specified, this will use :attr:`flask.request.form` + and :attr:`flask.request.files`. Explicitly pass ``formdata=None`` to + prevent this. + + .. attribute:: first_name + + + + + .. attribute:: last_name + + + + + .. attribute:: email + + + + + .. attribute:: password + + + + + +.. class:: UserLogIn(formdata=_Auto, **kwargs) + + + Bases: :py:obj:`flask_wtf.FlaskForm` + + Flask-specific subclass of WTForms :class:`~wtforms.form.Form`. + + If ``formdata`` is not specified, this will use :attr:`flask.request.form` + and :attr:`flask.request.files`. Explicitly pass ``formdata=None`` to + prevent this. + + .. attribute:: email + + + + + .. attribute:: password + + + + + diff --git a/docs/_build/html/_sources/autoapi/app/forms/index.rst.txt b/docs/_build/html/_sources/autoapi/app/forms/index.rst.txt new file mode 100644 index 0000000..e130485 --- /dev/null +++ b/docs/_build/html/_sources/autoapi/app/forms/index.rst.txt @@ -0,0 +1,15 @@ +:mod:`app.forms` +================ + +.. py:module:: app.forms + + +Submodules +---------- +.. toctree:: + :titlesonly: + :maxdepth: 1 + + app_forms/index.rst + + |