Skip to content

Commit 22b7f38

Browse files
committed
refactor(assets): updated assets as per new design
1 parent 5a4be32 commit 22b7f38

File tree

150 files changed

+11825
-5022
lines changed

Some content is hidden

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

150 files changed

+11825
-5022
lines changed

AspnetCoreMvcFull.sln

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.8.34322.80
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspnetCoreMvcFull", "AspnetCoreMvcFull.csproj", "{F5081E01-CB10-4728-8BD9-00D0433A81F5}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspnetCoreMvcFull", "AspnetCoreMvcFull.csproj", "{B0669AA4-51EF-43CE-9DA1-15DC79CF979D}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{F5081E01-CB10-4728-8BD9-00D0433A81F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{F5081E01-CB10-4728-8BD9-00D0433A81F5}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{F5081E01-CB10-4728-8BD9-00D0433A81F5}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{F5081E01-CB10-4728-8BD9-00D0433A81F5}.Release|Any CPU.Build.0 = Release|Any CPU
14+
{B0669AA4-51EF-43CE-9DA1-15DC79CF979D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{B0669AA4-51EF-43CE-9DA1-15DC79CF979D}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{B0669AA4-51EF-43CE-9DA1-15DC79CF979D}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{B0669AA4-51EF-43CE-9DA1-15DC79CF979D}.Release|Any CPU.Build.0 = Release|Any CPU
1818
EndGlobalSection
1919
GlobalSection(SolutionProperties) = preSolution
2020
HideSolutionNode = FALSE
2121
EndGlobalSection
2222
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {2F9E632E-4D63-47F3-A814-8CD9A2BFDB39}
23+
SolutionGuid = {11B6A7B9-7E27-495B-96C7-4BDA18F6D4B9}
2424
EndGlobalSection
2525
EndGlobal

Gulpfile.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,22 @@ const buildCssTask = function (cb) {
6565
// If conf.minify == true, generate compressed style without sourcemap
6666
gulpIf(
6767
conf.minify,
68-
`sass src/site.scss:${conf.distPath}/css/site.css src/scss:${conf.distPath}/vendor/css src/fonts:${conf.distPath}/vendor/fonts src/libs:${conf.distPath}/vendor/libs --style compressed --no-source-map`,
68+
`sass --load-path=node_modules/ src/site.scss:${conf.distPath}/css/site.css src/scss:${conf.distPath}/vendor/css src/fonts:${conf.distPath}/vendor/fonts src/libs:${conf.distPath}/vendor/libs --style compressed --no-source-map`,
6969
gulpIf(
7070
conf.fastDev,
71-
`sass src/site.scss:${conf.distPath}/css/site.css src/scss:${conf.distPath}/vendor/css src/scss/pages:${conf.distPath}/vendor/css/pages src/fonts:${conf.distPath}/vendor/fonts src/libs:${conf.distPath}/vendor/libs --no-source-map`
71+
`sass --load-path=node_modules/ src/site.scss:${conf.distPath}/css/site.css src/scss:${conf.distPath}/vendor/css src/scss/pages:${conf.distPath}/vendor/css/pages src/fonts:${conf.distPath}/vendor/fonts src/libs:${conf.distPath}/vendor/libs --no-source-map`
7272
)
7373
),
7474
function (err) {
7575
cb(err);
7676
}
7777
),
78-
sass({
79-
outputStyle: conf.minify ? 'compressed' : 'expanded'
80-
}).on('error', sass.logError)
78+
sass
79+
.sync({
80+
includePaths: ['node_modules'], // Add this line to include node_modules
81+
outputStyle: conf.minify ? 'compressed' : 'expanded'
82+
})
83+
.on('error', sass.logError)
8184
)
8285
)
8386
.pipe(gulpIf(conf.sourcemaps, sourcemaps.write()))
@@ -88,7 +91,8 @@ const buildCssTask = function (cb) {
8891
path.dirname = path.dirname.replace('scss', 'css');
8992
})
9093
)
91-
.pipe(dest(conf.distPath));
94+
.pipe(dest(conf.distPath))
95+
.pipe(browserSync.stream());
9296
};
9397

9498
// Build JS
@@ -231,7 +235,6 @@ module.exports = {
231235
'build:js': buildJsTask,
232236
'build:css': buildCssTask,
233237
'build:fonts': buildFontsTask,
234-
// 'build:ren': renameTask,
235238
build: buildTask,
236239
watch: watchTask
237240
};

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<a href="https://themeselection.com/item/sneat-free-aspnet-core-mvc-admin-template/" target="_blank">
3-
<img src="https://user-images.githubusercontent.com/749684/150333149-805037bc-8874-4a1f-876a-61a9683f8ef5.png" alt="sneat-logo" width="30px" height="auto">
3+
<img src="https://cdn.themeselection.com/ts-assets/sneat/logo/logo.png" alt="sneat-logo" width="60px" height="auto">
44
</a>
55
</p>
66

@@ -14,7 +14,7 @@
1414

1515
![GitHub](https://img.shields.io/github/license/themeselection/sneat-bootstrap-html-aspnet-core-mvc-admin-template-free) ![GitHub release (latest by date)](https://img.shields.io/github/v/release/themeselection/sneat-bootstrap-html-aspnet-core-mvc-admin-template-free) ![GitHub issues](https://img.shields.io/github/issues/themeselection/sneat-bootstrap-html-aspnet-core-mvc-admin-template-free) ![GitHub closed issues](https://img.shields.io/github/issues-closed/themeselection/sneat-bootstrap-html-aspnet-core-mvc-admin-template-free) ![Twitter Follow](https://img.shields.io/twitter/follow/Theme_Selection?style=social)
1616

17-
<kbd>[![Sneat - Free Bootstrap 5 .Net Core MVC Admin Template Demo Screenshot](https://cdn.jsdelivr.net/gh/themeselection/ts-assets/sneat/sneat-bootstrap-aspnet-core-mvc-admin-template-free/banner/banner.png)](https://themeselection.com/item/sneat-free-aspnet-core-mvc-admin-template/)</kbd>
17+
<kbd>[![Sneat - Free Bootstrap 5 .Net Core MVC Admin Template Demo Screenshot](https://cdn.themeselection.com/ts-assets/sneat/sneat-bootstrap-aspnet-core-mvc-admin-template-free/banner/banner.png)](https://themeselection.com/item/sneat-free-aspnet-core-mvc-admin-template/)</kbd>
1818

1919
## Introduction 🚀
2020

@@ -26,7 +26,7 @@ Build premium quality applications with ease. Use our innovative [Aspnet Core MV
2626

2727
## Installation ⚒️
2828

29-
Please [visit](https://demos.themeselection.com/sneat-bootstrap-html-admin-template/documentation/net-core-mvc-init-installation.html) our docs for the installation guide.
29+
Please [visit](https://demos.themeselection.com/sneat-bootstrap-html-admin-template/documentation/net-core-mvc-init-installation.html) our docs for installation guide.
3030

3131
## What's Included 📦
3232

@@ -51,7 +51,7 @@ Please [visit](https://demos.themeselection.com/sneat-bootstrap-html-admin-templ
5151
- Extended UI
5252
- Perfect Scrollbar
5353
- Text Divider
54-
- Box icon
54+
- Boxicon
5555
- Form Elements
5656
- Basic Inputs
5757
- Input Groups
@@ -71,9 +71,9 @@ Please [visit](https://demos.themeselection.com/sneat-bootstrap-html-admin-templ
7171
| Default Theme | Default, Semi Dark & Bordered Themes |
7272
| Fixed Layout(Menu) | Fixed & Static Layout(Menu) |
7373
| 1 Simple Dashboard | 5 Niche Dashboards |
74-
| - | Multiple Ready Applications like Calendar, Invoice, Users List, Users View, Roles and Permission, Transactions(CRUD) etc. |
74+
| - | Multiple Ready Applications like Calendar, Invoice, Users List, Users View, Roles and Permission,Transactions(CRUD) etc. |
7575
| Simple From Elements | Advance form elements, validation & form wizard |
76-
| Basic Cards | Basic, Advanced, Statistics, Analytics, Gamification, and Actions Cards |
76+
| Basic Cards | Basic, Advance, Statistics, Analytics, Gamification and Actions Cards |
7777
| Basic User Interface(Components) | Advance and Custom User Interfaces(Components) |
7878
| Two Extended Components | Twelve Ready to use Extended Components |
7979
| - | Quick Search - Quickly navigate between pages (w/ hotkey support) |
@@ -85,7 +85,7 @@ Please [visit](https://demos.themeselection.com/sneat-bootstrap-html-admin-templ
8585
| 1 Chart Library | 2 Chart Libraries |
8686
| - | Multiple Navbar & Menu Options |
8787
| - | Starter-kit |
88-
| - | Internationalization support, Docker support |
88+
| - | Internationalization support |
8989
| - | RTL Support |
9090
| Regular Support | Priority Support |
9191
| Detailed Documentation | Detailed Documentation |

Views/Auth/ForgotPasswordBasic.cshtml

+10-10
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,31 @@
1111

1212
<div class="container-xxl">
1313
<div class="authentication-wrapper authentication-basic container-p-y">
14-
<div class="authentication-inner py-4">
14+
<div class="authentication-inner">
1515

1616
<!-- Forgot Password -->
17-
<div class="card">
17+
<div class="card px-sm-6 px-0">
1818
<div class="card-body">
1919
<!-- Logo -->
20-
<div class="app-brand justify-content-center">
20+
<div class="app-brand justify-content-center mb-6">
2121
<a href="/" class="app-brand-link gap-2">
2222
<span class="app-brand-logo demo">@await Html.PartialAsync("../_Partials/_Macros")</span>
23-
<span class="app-brand-text demo text-body fw-bold">@TempData.Peek("appName")</span>
23+
<span class="app-brand-text demo text-heading fw-bold">@TempData.Peek("appName")</span>
2424
</a>
2525
</div>
2626
<!-- /Logo -->
27-
<h4 class="mb-2">Forgot Password? 🔒</h4>
28-
<p class="mb-4">Enter your email and we'll send you instructions to reset your password</p>
29-
<form id="formAuthentication" class="mb-3" action="~/Auth/ResetPasswordBasic" method="POST">
30-
<div class="mb-3">
27+
<h4 class="mb-1">Forgot Password? 🔒</h4>
28+
<p class="mb-6">Enter your email and we'll send you instructions to reset your password</p>
29+
<form id="formAuthentication" class="mb-6" action="~/" method="POST">
30+
<div class="mb-6">
3131
<label for="email" class="form-label">Email</label>
3232
<input type="text" class="form-control" id="email" name="email" placeholder="Enter your email" autofocus>
3333
</div>
3434
<button class="btn btn-primary d-grid w-100">Send Reset Link</button>
3535
</form>
3636
<div class="text-center">
37-
<a href="~/Auth/LoginBasic" class="d-flex align-items-center justify-content-center">
38-
<i class="bx bx-chevron-left scaleX-n1-rtl bx-sm"></i>
37+
<a href="~/Auth/LoginBasic" class="d-flex justify-content-center">
38+
<i class="bx bx-chevron-left me-1"></i>
3939
Back to login
4040
</a>
4141
</div>

Views/Auth/LoginBasic.cshtml

+21-21
Original file line numberDiff line numberDiff line change
@@ -13,46 +13,46 @@
1313
<div class="authentication-wrapper authentication-basic container-p-y">
1414
<div class="authentication-inner">
1515
<!-- Register -->
16-
<div class="card">
16+
<div class="card px-sm-6 px-0">
1717
<div class="card-body">
1818
<!-- Logo -->
1919
<div class="app-brand justify-content-center">
2020
<a href="/" class="app-brand-link gap-2">
2121
<span class="app-brand-logo demo">@await Html.PartialAsync("../_Partials/_Macros")</span>
22-
<span class="app-brand-text demo text-body fw-bold">@TempData.Peek("appName")</span>
22+
<span class="app-brand-text demo text-heading fw-bold">@TempData.Peek("appName")</span>
2323
</a>
2424
</div>
2525
<!-- /Logo -->
26-
<h4 class="mb-2">Welcome to @TempData.Peek("appName")! 👋</h4>
27-
<p class="mb-4">Please sign-in to your account and start the adventure</p>
26+
<h4 class="mb-1">Welcome to @TempData.Peek("appName")! 👋</h4>
27+
<p class="mb-6">Please sign-in to your account and start the adventure</p>
2828

29-
<form id="formAuthentication" class="mb-3" action="~/" method="POST">
30-
<div class="mb-3">
29+
<form id="formAuthentication" class="mb-6" action="~/" method="POST">
30+
<div class="mb-6">
3131
<label for="email" class="form-label">Email or Username</label>
3232
<input type="text" class="form-control" id="email" name="email-username" placeholder="Enter your email or username" autofocus>
3333
</div>
34-
<div class="mb-3 form-password-toggle">
35-
<div class="d-flex justify-content-between">
36-
<label class="form-label" for="password">Password</label>
37-
<a href="/Auth/ForgotPasswordBasic">
38-
<small>Forgot Password?</small>
39-
</a>
40-
</div>
34+
<div class="mb-6 form-password-toggle">
35+
<label class="form-label" for="password">Password</label>
4136
<div class="input-group input-group-merge">
4237
<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" />
4338
<span class="input-group-text cursor-pointer"><i class="bx bx-hide"></i></span>
4439
</div>
4540
</div>
46-
<div class="mb-3">
47-
<div class="form-check">
48-
<input class="form-check-input" type="checkbox" id="remember-me">
49-
<label class="form-check-label" for="remember-me">
50-
Remember Me
51-
</label>
41+
<div class="mb-8">
42+
<div class="d-flex justify-content-between mt-8">
43+
<div class="form-check mb-0 ms-2">
44+
<input class="form-check-input" type="checkbox" id="remember-me">
45+
<label class="form-check-label" for="remember-me">
46+
Remember Me
47+
</label>
48+
</div>
49+
<a href="/Auth/ForgotPasswordBasic">
50+
<span>Forgot Password?</span>
51+
</a>
5252
</div>
5353
</div>
54-
<div class="mb-3">
55-
<button class="btn btn-primary d-grid w-100" type="submit">Sign in</button>
54+
<div class="mb-6">
55+
<button class="btn btn-primary d-grid w-100" type="submit">Login</button>
5656
</div>
5757
</form>
5858

Views/Auth/RegisterBasic.cshtml

+11-11
Original file line numberDiff line numberDiff line change
@@ -14,38 +14,38 @@
1414
<div class="authentication-inner">
1515

1616
<!-- Register Card -->
17-
<div class="card">
17+
<div class="card px-sm-6 px-0">
1818
<div class="card-body">
1919
<!-- Logo -->
20-
<div class="app-brand justify-content-center">
20+
<div class="app-brand justify-content-center mb-6">
2121
<a href="/" class="app-brand-link gap-2">
2222
<span class="app-brand-logo demo">@await Html.PartialAsync("../_Partials/_Macros")</span>
23-
<span class="app-brand-text demo text-body fw-bold">@TempData.Peek("appName")</span>
23+
<span class="app-brand-text demo text-heading fw-bold">@TempData.Peek("appName")</span>
2424
</a>
2525
</div>
2626
<!-- /Logo -->
27-
<h4 class="mb-2">Adventure starts here 🚀</h4>
28-
<p class="mb-4">Make your app management easy and fun!</p>
27+
<h4 class="mb-1">Adventure starts here 🚀</h4>
28+
<p class="mb-6">Make your app management easy and fun!</p>
2929

30-
<form id="formAuthentication" class="mb-3" action="~/" method="POST">
31-
<div class="mb-3">
30+
<form id="formAuthentication" class="mb-6" action="~/" method="POST">
31+
<div class="mb-6">
3232
<label for="username" class="form-label">Username</label>
3333
<input type="text" class="form-control" id="username" name="username" placeholder="Enter your username" autofocus>
3434
</div>
35-
<div class="mb-3">
35+
<div class="mb-6">
3636
<label for="email" class="form-label">Email</label>
3737
<input type="text" class="form-control" id="email" name="email" placeholder="Enter your email">
3838
</div>
39-
<div class="mb-3 form-password-toggle">
39+
<div class="mb-6 form-password-toggle">
4040
<label class="form-label" for="password">Password</label>
4141
<div class="input-group input-group-merge">
4242
<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" />
4343
<span class="input-group-text cursor-pointer"><i class="bx bx-hide"></i></span>
4444
</div>
4545
</div>
4646

47-
<div class="mb-3">
48-
<div class="form-check">
47+
<div class="my-8">
48+
<div class="form-check mb-0 ms-2">
4949
<input class="form-check-input" type="checkbox" id="terms-conditions" name="terms">
5050
<label class="form-check-label" for="terms-conditions">
5151
I agree to

0 commit comments

Comments
 (0)