Skip to content

Commit

Permalink
Fix zxcvbn.js path
Browse files Browse the repository at this point in the history
  • Loading branch information
rixx committed Dec 14, 2023
1 parent 10a8457 commit a4be511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pretalx/common/forms/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def render(self, name, value, attrs=None, renderer=None):
return mark_safe(super().render(name, value, self.attrs) + markup)

class Media: # Note: we don't use {{ form.media }}, since it doesn't allow us to load media async, and the zxcvbn scripts are horribly slow
js = ("common/js/zxcvbn.js", "common/js/password_strength.js")
js = ("vendored/zxcvbn.js", "common/js/password_strength.js")


class PasswordConfirmationInput(PasswordInput):
Expand Down

0 comments on commit a4be511

Please sign in to comment.