Merge pull request #8 from kaleblub/main
Typo correction, and login page edits
This commit is contained in:
commit
f54112abca
@ -45,8 +45,8 @@ DJANGO_APPS = [
|
||||
"django.contrib.staticfiles",
|
||||
]
|
||||
|
||||
# Thired party apps
|
||||
THIRED_PARTY_APPS = [
|
||||
# Third party apps
|
||||
THIRD_PARTY_APPS = [
|
||||
"crispy_forms",
|
||||
"rest_framework",
|
||||
]
|
||||
@ -63,7 +63,7 @@ PROJECT_APPS = [
|
||||
]
|
||||
|
||||
# Combine all apps
|
||||
INSTALLED_APPS = DJANGO_APPS + THIRED_PARTY_APPS + PROJECT_APPS
|
||||
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + PROJECT_APPS
|
||||
|
||||
MIDDLEWARE = [
|
||||
"django.middleware.security.SecurityMiddleware",
|
||||
|
||||
@ -1840,6 +1840,16 @@ a {
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
#login .login-bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 0 18px 0 18px;
|
||||
}
|
||||
|
||||
#login .login-bottom > * {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ################################################################################################# */
|
||||
.score-wrapper {
|
||||
position: relative;
|
||||
|
||||
@ -4,7 +4,10 @@
|
||||
{% block content %}
|
||||
|
||||
<div id="login">
|
||||
<div class="login-title blue-gradient"><i class="fas fa-lock"></i>Sign in</div>
|
||||
<div class="login-title blue-gradient">
|
||||
<i class="fas fa-lock"></i>
|
||||
<span class="login-title-text">Sign in</span>
|
||||
</div>
|
||||
|
||||
<form action="" method="POST" id="login-form">{% csrf_token %}
|
||||
<div class="form-group px-3">
|
||||
@ -23,7 +26,10 @@
|
||||
<button type="submit" class="btn btn-primary" id="login-btn"><i class="fas fa-sign-in-alt"></i><small> SIGN IN</small></button>
|
||||
</form>
|
||||
<br>
|
||||
<div class="login-bottom">
|
||||
<a href="{% url 'password_reset' %}" class="link">Forgot password ?</a>
|
||||
<a href="{% url 'register' %}" class="link">Don't have an account ?</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock content %}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user