Fix wordings on Login page

This commit is contained in:
Son NK 2019-07-06 15:42:36 +02:00 committed by Son NK
parent c98d2594c6
commit a2225160d5
2 changed files with 5 additions and 4 deletions

3
.gitignore vendored
View File

@ -3,4 +3,5 @@
db.sqlite
.env
.pytest_cache
.vscode
.vscode
.DS_Store

View File

@ -33,7 +33,7 @@
<label class="form-label">
Password
<a href="{{ url_for('auth.forgot_password') }}" class="float-right small">
I forgot password
I forgot my password
</a>
</label>
{{ form.password(class="form-control", type="password") }}
@ -50,13 +50,13 @@
-->
<div class="form-footer">
<button type="submit" class="btn btn-primary btn-block">Sign in</button>
<button type="submit" class="btn btn-primary btn-block">Log in</button>
</div>
</div>
</form>
<div class="text-center text-muted">
Don't have account yet? <a href="{{ url_for('auth.register') }}">Sign up</a>
Don't have an account yet? <a href="{{ url_for('auth.register') }}">Sign up</a>
</div>