Skip to content

Commit 7476b33

Browse files
committed
refactor(assets): updated assets as per new design
1 parent 2a9b13b commit 7476b33

File tree

155 files changed

+12025
-4995
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+12025
-4995
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Ignoring src and assets folders
22

3+
# Exclude everything from vendors
4+
/src/assets/vendor
5+
36
# Ignoring static/assets folders
47
./assets/
58
static/

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"name": "Python: Django",
2323
"type": "python",
2424
"request": "launch",
25-
"program": "${workspaceFolder}/full-version/manage.py",
25+
"program": "${workspaceFolder}/manage.py",
2626
"console": "integratedTerminal",
2727
"args": [
2828
"runserver",

apps/authentication/templates/auth_forgot_password_basic.html

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,32 @@
1414
{% block content %}
1515
<div class="container-xxl">
1616
<div class="authentication-wrapper authentication-basic container-p-y">
17-
<div class="authentication-inner py-4">
17+
<div class="authentication-inner">
1818

1919
<!-- Forgot Password -->
20-
<div class="card">
20+
<div class="card px-sm-6 px-0">
2121
<div class="card-body">
2222
<!-- Logo -->
23-
<div class="app-brand justify-content-center">
23+
<div class="app-brand justify-content-center mb-6">
2424
<a href="{% url 'index' %}" class="app-brand-link gap-2">
25-
<span class="app-brand-logo demo">
26-
{% include 'partials/logo.html' with width=25 withbg="#696cff" %}
27-
</span>
28-
<span class="app-brand-text demo text-body fw-bold">{% get_theme_variables 'template_name' %}</span>
25+
<span class="app-brand-logo demo">{% include 'partials/logo.html' with withbg="#696cff" %}</span>
26+
<span class="app-brand-text demo text-heading fw-bold">{% get_theme_variables 'template_name' %}</span>
2927
</a>
3028
</div>
3129
<!-- /Logo -->
32-
<h4 class="mb-2">Forgot Password? 🔒</h4>
33-
<p class="mb-4">Enter your email and we'll send you instructions to reset your password</p>
34-
<form id="formAuthentication" class="mb-3" action="{% url 'index' %}">
30+
<h4 class="mb-1">Forgot Password? 🔒</h4>
31+
<p class="mb-6">Enter your email and we'll send you instructions to reset your password</p>
32+
<form id="formAuthentication" class="mb-6" action="{% url 'index' %}">
3533
{% csrf_token %}
36-
<div class="mb-3">
34+
<div class="mb-6">
3735
<label for="email" class="form-label">Email</label>
3836
<input type="text" class="form-control" id="email" name="email" placeholder="Enter your email" autofocus>
3937
</div>
4038
<button class="btn btn-primary d-grid w-100">Send Reset Link</button>
4139
</form>
4240
<div class="text-center">
43-
<a href="{% url 'auth-login-basic' %}" class="d-flex align-items-center justify-content-center">
44-
<i class="bx bx-chevron-left scaleX-n1-rtl bx-sm"></i>
41+
<a href="{% url 'auth-login-basic' %}" class="d-flex justify-content-center">
42+
<i class="bx bx-chevron-left me-1"></i>
4543
Back to login
4644
</a>
4745
</div>
@@ -51,4 +49,4 @@ <h4 class="mb-2">Forgot Password? 🔒</h4>
5149
</div>
5250
</div>
5351
</div>
54-
{% endblock content %}
52+
{% endblock %}

apps/authentication/templates/auth_login_basic.html

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -15,49 +15,47 @@
1515
<div class="authentication-wrapper authentication-basic container-p-y">
1616
<div class="authentication-inner">
1717
<!-- Login -->
18-
<div class="card">
18+
<div class="card px-sm-6 px-0">
1919
<div class="card-body">
2020
<!-- Logo -->
2121
<div class="app-brand justify-content-center">
2222
<a href="{% url 'index' %}" class="app-brand-link gap-2">
23-
<span class="app-brand-logo demo">
24-
{% include 'partials/logo.html' with width=25 withbg="#696cff" %}
25-
</span>
26-
<span class="app-brand-text demo text-body fw-bold">{% get_theme_variables 'template_name' %}</span>
23+
<span class="app-brand-logo demo">{% include 'partials/logo.html' with withbg="#696cff" %}</span>
24+
<span class="app-brand-text demo text-heading fw-bold">{% get_theme_variables 'template_name' %}</span>
2725
</a>
2826
</div>
2927
<!-- /Logo -->
30-
<h4 class="mb-2">Welcome to {% get_theme_variables 'template_name' %}! 👋</h4>
31-
<p class="mb-4">Please sign-in to your account and start the adventure</p>
28+
<h4 class="mb-1">Welcome to {% get_theme_variables 'template_name' %}! 👋</h4>
29+
<p class="mb-6">Please sign-in to your account and start the adventure</p>
3230

33-
<form id="formAuthentication" class="mb-3" action="{% url 'index' %}">
31+
<form id="formAuthentication" class="mb-6" action="{% url 'index' %}">
3432
{% csrf_token %}
35-
<div class="mb-3">
33+
<div class="mb-6">
3634
<label for="email" class="form-label">Email or Username</label>
3735
<input type="text" class="form-control" id="email" name="email-username" placeholder="Enter your email or username" autofocus>
3836
</div>
39-
<div class="mb-3 form-password-toggle">
40-
<div class="d-flex justify-content-between">
41-
<label class="form-label" for="password">Password</label>
42-
<a href="{% url 'auth-forgot-password-basic' %}">
43-
<small>Forgot Password?</small>
44-
</a>
45-
</div>
37+
<div class="mb-6 form-password-toggle">
38+
<label class="form-label" for="password">Password</label>
4639
<div class="input-group input-group-merge">
4740
<input type="password" id="password" class="form-control" name="password" placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;" aria-describedby="password" />
4841
<span class="input-group-text cursor-pointer"><i class="bx bx-hide"></i></span>
4942
</div>
5043
</div>
51-
<div class="mb-3">
52-
<div class="form-check">
53-
<input class="form-check-input" type="checkbox" id="remember-me">
54-
<label class="form-check-label" for="remember-me">
55-
Remember Me
56-
</label>
44+
<div class="mb-8">
45+
<div class="d-flex justify-content-between mt-8">
46+
<div class="form-check mb-0 ms-2">
47+
<input class="form-check-input" type="checkbox" id="remember-me">
48+
<label class="form-check-label" for="remember-me">
49+
Remember Me
50+
</label>
51+
</div>
52+
<a href="{% url 'auth-forgot-password-basic' %}">
53+
<span>Forgot Password?</span>
54+
</a>
5755
</div>
5856
</div>
59-
<div class="mb-3">
60-
<button class="btn btn-primary d-grid w-100" type="submit">Sign in</button>
57+
<div class="mb-6">
58+
<button class="btn btn-primary d-grid w-100" type="submit">Login</button>
6159
</div>
6260
</form>
6361

@@ -73,4 +71,4 @@ <h4 class="mb-2">Welcome to {% get_theme_variables 'template_name' %}! 👋</h4>
7371
</div>
7472
</div>
7573
</div>
76-
{% endblock content %}
74+
{% endblock %}

apps/authentication/templates/auth_register_basic.html

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,41 +17,39 @@
1717
<div class="authentication-inner">
1818

1919
<!-- Register Card -->
20-
<div class="card">
20+
<div class="card px-sm-6 px-0">
2121
<div class="card-body">
2222
<!-- Logo -->
23-
<div class="app-brand justify-content-center">
23+
<div class="app-brand justify-content-center mb-6">
2424
<a href="{% url 'index' %}" class="app-brand-link gap-2">
25-
<span class="app-brand-logo demo">
26-
{% include 'partials/logo.html' with width=25 withbg="#696cff" %}
27-
</span>
28-
<span class="app-brand-text demo text-body fw-bold">{% get_theme_variables 'template_name' %}</span>
25+
<span class="app-brand-logo demo">{% include 'partials/logo.html' with withbg="#696cff" %}</span>
26+
<span class="app-brand-text demo text-heading fw-bold">{% get_theme_variables 'template_name' %}</span>
2927
</a>
3028
</div>
3129
<!-- /Logo -->
32-
<h4 class="mb-2">Adventure starts here 🚀</h4>
33-
<p class="mb-4">Make your app management easy and fun!</p>
30+
<h4 class="mb-1">Adventure starts here 🚀</h4>
31+
<p class="mb-6">Make your app management easy and fun!</p>
3432

35-
<form id="formAuthentication" class="mb-3" action="{% url 'index' %}">
33+
<form id="formAuthentication" class="mb-6" action="{% url 'index' %}">
3634
{% csrf_token %}
37-
<div class="mb-3">
35+
<div class="mb-6">
3836
<label for="username" class="form-label">Username</label>
3937
<input type="text" class="form-control" id="username" name="username" placeholder="Enter your username" autofocus>
4038
</div>
41-
<div class="mb-3">
39+
<div class="mb-6">
4240
<label for="email" class="form-label">Email</label>
4341
<input type="text" class="form-control" id="email" name="email" placeholder="Enter your email">
4442
</div>
45-
<div class="mb-3 form-password-toggle">
43+
<div class="mb-6 form-password-toggle">
4644
<label class="form-label" for="password">Password</label>
4745
<div class="input-group input-group-merge">
4846
<input type="password" id="password" class="form-control" name="password" placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;" aria-describedby="password" />
4947
<span class="input-group-text cursor-pointer"><i class="bx bx-hide"></i></span>
5048
</div>
5149
</div>
5250

53-
<div class="mb-3">
54-
<div class="form-check">
51+
<div class="my-8">
52+
<div class="form-check mb-0 ms-2">
5553
<input class="form-check-input" type="checkbox" id="terms-conditions" name="terms">
5654
<label class="form-check-label" for="terms-conditions">
5755
I agree to
@@ -76,4 +74,4 @@ <h4 class="mb-2">Adventure starts here 🚀</h4>
7674
</div>
7775
</div>
7876
</div>
79-
{% endblock content %}
77+
{% endblock %}

0 commit comments

Comments
 (0)