17 lines
329 B
Python
17 lines
329 B
Python
__author__ = 'RemiZOffAlex'
|
|
__copyright__ = '(c) RemiZOffAlex'
|
|
__license__ = 'MIT'
|
|
__email__ = 'remizoffalex@mail.ru'
|
|
__url__ = 'https://remizoffalex.ru'
|
|
|
|
from wtforms import (
|
|
Form,
|
|
TextField,
|
|
TextAreaField
|
|
)
|
|
|
|
|
|
class PageEdit(Form):
|
|
title = TextField('Заголовок')
|
|
text = TextAreaField('Текст')
|