Prototype website for VPN service, Bitcoin payments via the Blockchain.info API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
280 B

10 years ago
  1. from flask.ext.wtf import Form
  2. from wtforms import TextField, SubmitField, TextAreaField
  3. from wtforms.validators import Required
  4. class TicketForm(Form):
  5. subject = TextField('Subject', validators = [Required()])
  6. body = TextAreaField('Message', validators = [Required()])