Skip to content

Commit 3aaa648

Browse files
Created password update form
1 parent 93b3dbd commit 3aaa648

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/contestadmin/forms.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,11 @@ class DesignateFacultyTeamForm(forms.Form):
5656
max_length=30,
5757
label='Team name',
5858
help_text="Name of faculty team.")
59+
60+
61+
class UpdatePasswordForm(forms.Form):
62+
username = forms.CharField(
63+
max_length=150,
64+
label='Username',
65+
help_text="Person's account username.")
66+
password = forms.CharField()

0 commit comments

Comments
 (0)