Skip to content

Commit 46ffffc

Browse files
authored
Merge pull request #1 from themeselection/design-update
Merging: design-update branch to main branch
2 parents 5a4be32 + 5b1c147 commit 46ffffc

File tree

153 files changed

+11846
-5039
lines changed

Some content is hidden

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

153 files changed

+11846
-5039
lines changed

.github/workflows/handle-new-issue-comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Handle new issue comment'
1+
name: '💬 Handle new issue comment'
22
on:
33
issue_comment:
44
types: [created]
@@ -9,6 +9,6 @@ jobs:
99
name: Handle new issue comment
1010
steps:
1111
- name: Toggle awaiting-reply label
12-
uses: jd-solanki/gh-action-toggle-awaiting-reply-label@v2.1.0
12+
uses: jd-solanki/gh-action-toggle-awaiting-reply-label@v2.1.2
1313
with:
1414
label: awaiting-reply

.github/workflows/issue-staler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Close stale issues and PRs'
1+
name: '😶‍🌫️ Close stale issues and PRs'
22
on:
33
schedule:
44
- cron: '30 1 * * *'

AspnetCoreMvcFull.sln

Lines changed: 6 additions & 6 deletions
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

Lines changed: 10 additions & 7 deletions
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

Lines changed: 20 additions & 20 deletions
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,19 +14,19 @@
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

21-
If you’re a developer looking for the most Powerful & comprehensive [**Free Bootstrap 5 ASPNET Core MVC Admin Template**](https://themeselection.com/item/sneat-bootstrap-html-aspnet-core-mvc-admin-template-free/) built for developers, rich with features, and highly customizable look no further than Sneat. We’ve followed the highest industry standards to bring you the very best admin template that is not only fast and easy to use but highly scalable. Offering ultimate convenience and flexibility, you’ll be able to build whatever application you want with very little hassle.
21+
If you’re a developer looking for the most Powerful & comprehensive [**Free Bootstrap 5 ASPNET Core MVC Admin Template**](https://themeselection.com/item/sneat-free-aspnet-core-mvc-admin-template/) built for developers, rich with features, and highly customizable look no further than Sneat. We’ve followed the highest industry standards to bring you the very best admin template that is not only fast and easy to use but highly scalable. Offering ultimate convenience and flexibility, you’ll be able to build whatever application you want with very little hassle.
2222

23-
Build premium quality applications with ease. Use our innovative [Aspnet Core MVC Bootstrap admin template](https://themeselection.com/item/category/bootstrap-admin-templates/) to create eye-catching, high-quality WebApps. Your apps will be completely responsive, ensuring they’ll look stunning and function flawlessly on desktops, tablets, and mobile devices.
23+
Build premium quality applications with ease. Use our innovative [Aspnet Core MVC Bootstrap admin template](https://themeselection.com/item/category/asp-net-dashboard/) to create eye-catching, high-quality WebApps. Your apps will be completely responsive, ensuring they’ll look stunning and function flawlessly on desktops, tablets, and mobile devices.
2424

25-
[View Demo](https://demos.themeselection.com/sneat-bootstrap-html-aspnet-core-mvc-admin-template-free/html/)
25+
[View Demo](https://demos.themeselection.com/sneat-aspnet-core-mvc-admin-template-free/html/)
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. |
75-
| Simple From Elements | Advance form elements, validation & form wizard |
76-
| Basic Cards | Basic, Advanced, Statistics, Analytics, Gamification, and Actions Cards |
74+
| - | Multiple Ready Applications like Calendar, Invoice, Users List, Users View, Roles and Permission,Transactions(CRUD) etc. |
75+
| Simple Form Elements | Advance form elements, validation & form wizard |
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 |
@@ -166,22 +166,22 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium
166166

167167
**[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use **Fully Coded Dashboard Templates & UI Kits** to create your applications faster!
168168

169-
- [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/)
170-
- [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/)
171-
- [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/)
169+
- [Bootstrap Admin Templates](https://themeselection.com/item/category/bootstrap-admin-templates/)
170+
- [VueJS Admin Templates](https://themeselection.com/item/category/vuejs-admin-templates/)
171+
- [Laravel Admin Templates](https://themeselection.com/item/category/laravel-admin-templates/)
172172
- [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/)
173173
- [React (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/)
174174
- [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/)
175-
- [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/)
175+
- [Free UI Kits](https://themeselection.com/item/category/free-ui-kits/)
176176

177-
If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Sneat Aspnet Core MVC Free then do visit [ThemeSelection](https://themeselection.com/).
177+
If you want to [Download Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/) like Sneat Aspnet Core MVC Free then do visit [ThemeSelection](https://themeselection.com/).
178178

179179
## Useful Links 🎁
180180

181-
- [Vue CheatSheet](https://vue-cheatsheet.themeselection.com/)
182-
- [Freebies](https://themeselection.com/products/category/download-free-admin-templates/)
183-
- [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/)
184-
- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/)
181+
* [Vue CheatSheet](https://vue-cheatsheet.themeselection.com/)
182+
* [Freebies](https://themeselection.com/item/category/free-admin-templates/)
183+
* [Download Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/)
184+
* [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/)
185185

186186
## Social Media :earth_africa:
187187

Views/Auth/ForgotPasswordBasic.cshtml

Lines changed: 10 additions & 10 deletions
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>

0 commit comments

Comments
 (0)