Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#2474] Fixing typo in e-mail verificationflow #1537

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/open_inwoner/accounts/views/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ def page_title(self):
def get_context_data(self, **kwargs):
ctx = super().get_context_data(**kwargs)
text = _(
"Er is een e-mail verstuurd naar {email}. Klik op de link in de mail om uw e-mailadres te bevestigen."
"Heef u geen e-mail ontvangen? Verstuur deze dan nog een keer via onderstaande knop."
"Er is een e-mail verstuurd naar {email}. Klik op de link in de mail om uw e-mailadres te bevestigen. "
"Heeft u geen e-mail ontvangen? Verstuur deze dan nog een keer via onderstaande knop."
)
ctx["verification_text"] = html_tag_wrap_format(
text, "strong", email=self.request.user.email
Expand Down
Loading