Skip to content

Commit

Permalink
Fix wordage on login page
Browse files Browse the repository at this point in the history
Logging in via entering an email doesn't currently work - this is a bug that needs to be fixed, but for the time being we'll just say that you can only log in with a username.

See #103.
  • Loading branch information
hwittenborn committed Apr 29, 2023
1 parent 75ff26a commit 69fd183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h2>Logged-in as: <a href="/account/{{ request.user.Username }}">{{ request.user
{% endif %}

<div class="item">
<label for="id_username">{% trans %}User name or primary email address{% endtrans %}:</label>
<label for="id_username">{% trans %}User name{% endtrans %}:</label>
<input id="id_username" type="text" name="user" size="30" maxlength="254" autofocus="autofocus" required="required" value="{{ user or '' }}">
</div>

Expand Down

0 comments on commit 69fd183

Please sign in to comment.