22 lines
413 B
Python
22 lines
413 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
__author__ = 'RemiZOffAlex'
|
|
__copyright__ = '(c) RemiZOffAlex'
|
|
__license__ = 'MIT'
|
|
__email__ = 'remizoffalex@mail.ru'
|
|
__url__ = 'http://remizoffalex.ru'
|
|
|
|
from wtforms import (
|
|
Form,
|
|
BooleanField,
|
|
TextField,
|
|
PasswordField,
|
|
TextAreaField
|
|
)
|
|
|
|
|
|
class PageEdit(Form):
|
|
title = TextField('Заголовок')
|
|
text = TextAreaField('Текст')
|