mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-18 06:24:23 +01:00
43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
from wtforms import BooleanField, PasswordField, SelectField, StringField
|
|
from wtforms.fields.html5 import EmailField
|
|
from wtforms.validators import InputRequired
|
|
|
|
from CTFd.forms import BaseForm
|
|
from CTFd.forms.fields import SubmitField
|
|
from CTFd.utils.countries import SELECT_COUNTRIES_LIST
|
|
|
|
|
|
class UserSearchForm(BaseForm):
|
|
field = SelectField(
|
|
"Search Field",
|
|
choices=[
|
|
("name", "Name"),
|
|
("id", "ID"),
|
|
("email", "Email"),
|
|
("affiliation", "Affiliation"),
|
|
("ip", "IP Address"),
|
|
],
|
|
default="name",
|
|
validators=[InputRequired()],
|
|
)
|
|
q = StringField("Parameter", validators=[InputRequired()])
|
|
submit = SubmitField("Search")
|
|
|
|
|
|
class UserEditForm(BaseForm):
|
|
name = StringField("User Name", validators=[InputRequired()])
|
|
email = EmailField("Email", validators=[InputRequired()])
|
|
password = PasswordField("Password")
|
|
website = StringField("Website")
|
|
affiliation = StringField("Affiliation")
|
|
country = SelectField("Country", choices=SELECT_COUNTRIES_LIST)
|
|
type = SelectField("Type", choices=[("user", "User"), ("admin", "Admin")])
|
|
verified = BooleanField("Verified")
|
|
hidden = BooleanField("Hidden")
|
|
banned = BooleanField("Banned")
|
|
submit = SubmitField("Submit")
|
|
|
|
|
|
class UserCreateForm(UserEditForm):
|
|
notify = BooleanField("Email account credentials to user", default=True)
|