Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version 3.1.1 #17

Merged
merged 9 commits into from
Apr 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
],
"homepage": "https://themesberg.com/product/ui-kits/pixel-lite-free-bootstrap-4-ui-kit",
"repository": {
"type" : "git",
"url" : "https://github.com/themesberg/pixel-bootstrap-ui-kit"
"type": "git",
"url": "https://github.com/themesberg/pixel-bootstrap-ui-kit"
},
"bugs": {
"email": "support@themesberg.com"
Expand Down
Binary file added src/assets/img/presentation/all-pages/signin.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/presentation/all-pages/signup.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src/assets/js/pixel.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ $(document).ready(function () {
$('.datepicker')[0] && $('.datepicker').each(function () {
$('.datepicker').datepicker({
disableTouchKeyboard: true,
autoclose: true,
});
});

Expand Down
112 changes: 112 additions & 0 deletions src/html/pages/sign-in.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<!--

=========================================================
* Pixel Lite Bootstrap Design System
=========================================================

* Product Page: https://themesberg.com/product/ui-kits/pixel-lite-free-bootstrap-4-ui-kit
* Copyright 2019 Themesberg (https://www.themesberg.com)
* License Themesberg (Crafty Dwarf LLC) (https://themesberg.com/licensing)

* Coded by https://themesberg.com

=========================================================

* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

-->
<!DOCTYPE html>
<html lang="en">

<head>
@@include('./_head.html', {
"path": "../..",
"title": "Pixel Pages - Sign in"
})
</head>

<body>
<main>

@@include('./_preloader.html', {
"path": "../.."
})

<!-- Section -->
<section class="min-vh-100 d-flex align-items-center bg-soft">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 d-flex align-items-center justify-content-center">
<div class="signin-inner mt-3 mt-lg-0 bg-white shadow-soft border rounded border-light p-4 p-lg-5 w-100 fmxw-500">
<div class="text-center text-md-center mb-4 mt-md-0">
<h1 class="mb-0 h3">Sign in to our platform</h1>
</div>
<form action="#" class="mt-4">
<!-- Form -->
<div class="form-group">
<label for="exampleInputIcon3">Your email</label>
<div class="input-group mb-4">
<div class="input-group-prepend">
<span class="input-group-text"><span class="fas fa-envelope"></span></span>
</div>
<input class="form-control" id="exampleInputIcon3" placeholder="example@company.com" type="text" aria-label="email adress" required>
</div>
</div>
<!-- End of Form -->
<div class="form-group">
<!-- Form -->
<div class="form-group">
<label for="password">Password</label>
<div class="input-group mb-4">
<div class="input-group-prepend">
<span class="input-group-text"><span class="fas fa-unlock-alt"></span></span>
</div>
<input class="form-control" id="password" placeholder="Password" type="password" aria-label="Password" required>
</div>
</div>
<!-- End of Form -->
<div class="d-flex justify-content-between align-items-center mb-4">
<div class="form-check m-0">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck5">
<label class="form-check-label" for="defaultCheck5">
Remember me
</label>
</div>
<div><a href="#" class="small text-right">Lost password?</a></div>
</div>
</div>
<button type="submit" class="btn btn-block btn-primary">Sign in</button>
</form>
<div class="mt-3 mb-4 text-center">
<span class="font-weight-normal">or login with</span>
</div>
<div class="btn-wrapper my-4 text-center">
<button class="btn btn-icon-only btn-pill btn-outline-light text-facebook mr-2" type="button" aria-label="facebook button" title="facebook button">
<span aria-hidden="true" class="fab fa-facebook-f"></span>
</button>
<button class="btn btn-icon-only btn-pill btn-outline-light text-twitter mr-2" type="button" aria-label="twitter button" title="twitter button">
<span aria-hidden="true" class="fab fa-twitter"></span>
</button>
<button class="btn btn-icon-only btn-pill btn-outline-light text-github" type="button" aria-label="github button" title="github button">
<span aria-hidden="true" class="fab fa-github"></span>
</button>
</div>
<div class="d-block d-sm-flex justify-content-center align-items-center mt-4">
<span class="font-weight-normal">
Not registered?
<a href="./sign-up.html" class="font-weight-bold">Create account</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
</main>

@@include('./_scripts.html', {
"path": "../.."
})
</body>

</html>
120 changes: 120 additions & 0 deletions src/html/pages/sign-up.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<!--

=========================================================
* Pixel Lite Bootstrap Design System
=========================================================

* Product Page: https://themesberg.com/product/ui-kits/pixel-lite-free-bootstrap-4-ui-kit
* Copyright 2019 Themesberg (https://www.themesberg.com)
* License Themesberg (Crafty Dwarf LLC) (https://themesberg.com/licensing)

* Coded by https://themesberg.com

=========================================================

* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

-->
<!DOCTYPE html>
<html lang="en">

<head>
@@include('./_head.html', {
"path": "../..",
"title": "Pixel Pages - Sign up"
})
</head>

<body>
<main>

@@include('./_preloader.html', {
"path": "../.."
})

<!-- Section -->
<section class="min-vh-100 d-flex align-items-center bg-soft">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 d-flex align-items-center justify-content-center">
<div class="signin-inner mt-3 mt-lg-0 bg-white shadow-soft border rounded border-light p-4 p-lg-5 w-100 fmxw-500">
<div class="text-center text-md-center mb-4 mt-md-0">
<h1 class="mb-0 h3">Create an account</h1>
</div>
<form action="#">
<!-- Form -->
<div class="form-group">
<label for="exampleInputIcon4">Your email</label>
<div class="input-group mb-4">
<div class="input-group-prepend">
<span class="input-group-text"><span class="fas fa-envelope"></span></span>
</div>
<input class="form-control" id="exampleInputIcon4" placeholder="example@company.com" type="text" aria-label="email adress" required>
</div>
</div>
<!-- End of Form -->
<div class="form-group">
<!-- Form -->
<div class="form-group">
<label for="password">Password</label>
<div class="input-group mb-4">
<div class="input-group-prepend">
<span class="input-group-text"><span class="fas fa-unlock-alt"></span></span>
</div>
<input class="form-control" id="password" placeholder="Password" type="password" aria-label="Password" required>
</div>
</div>
<!-- End of Form -->
<!-- Form -->
<div class="form-group">
<label for="passwordConfirm">Confirm Password</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><span class="fas fa-unlock-alt"></span></span>
</div>
<input class="form-control" id="passwordConfirm" placeholder="Confirm password" type="password" aria-label="Password" required>
</div>
</div>
<!-- End of Form -->
<div class="form-check mb-4">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck6">
<label class="form-check-label" for="defaultCheck6">
I agree to the <a href="#">terms and conditions</a>
</label>
</div>
</div>
<button type="submit" class="btn btn-block btn-primary">Sign in</button>
</form>
<div class="mt-3 mb-4 text-center">
<span class="font-weight-normal">or</span>
</div>
<div class="btn-wrapper my-4 text-center">
<button class="btn btn-icon-only btn-pill btn-outline-light text-facebook mr-2" type="button" aria-label="facebook button" title="facebook button">
<span aria-hidden="true" class="fab fa-facebook-f"></span>
</button>
<button class="btn btn-icon-only btn-pill btn-outline-light text-twitter mr-2" type="button" aria-label="twitter button" title="twitter button">
<span aria-hidden="true" class="fab fa-twitter"></span>
</button>
<button class="btn btn-icon-only btn-pill btn-outline-light text-facebook" type="button" aria-label="github button" title="github button">
<span aria-hidden="true" class="fab fa-github"></span>
</button>
</div>
<div class="d-block d-sm-flex justify-content-center align-items-center mt-4">
<span class="font-weight-normal">
Already have an account?
<a href="./sign-in.html" class="font-weight-bold">Login here</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
</main>

@@include('./_scripts.html', {
"path": "../.."
})
</body>

</html>
12 changes: 12 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,18 @@ <h3 class="h4">Modals</h3>
"path": "."
})

<div class="section section-sm pb-0 mb-n4">
<div class="container">
<div class="row justify-content-center">
<h3 class="h4">Navbars</h3>
</div>
</div>
</div>

@@include('./components/_navbars.html', {
"path": "."
})

<div class="section section-sm pb-0 mb-n4">
<div class="container">
<div class="row justify-content-center">
Expand Down
2 changes: 2 additions & 0 deletions src/partials/_navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<li><a class="dropdown-item" href="@@path/html/pages/contact.html">Contact</a></li>
<li><a class="dropdown-item" href="@@path/html/pages/pricing.html">Pricing</a></li>
<li><a class="dropdown-item" href="@@path/html/pages/services.html">Services</a></li>
<li><a class="dropdown-item" href="@@path/html/pages/sign-in.html">Sign in</a></li>
<li><a class="dropdown-item" href="@@path/html/pages/sign-up.html">Sign up</a></li>
</ul>
</li>
<li class="nav-item dropdown mega-dropdown">
Expand Down
16 changes: 16 additions & 0 deletions src/partials/_pages-preview.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,20 @@ <h3 class="h6 m-0 text-center text-white">Contact<span class="fas fa-external-li
</div>
</a>
</div>
<div class="col-6 col-lg-3 mb-5">
<a href="@@path_pages/sign-in.html" class="page-preview scale-up-hover-2">
<img class="shadow-lg rounded scale" src="@@path/assets/img/presentation/all-pages/signin.jpg" alt="Contact page preview">
<div class="text-center show-on-hover">
<h3 class="h6 m-0 text-center text-white">Sign in<span class="fas fa-external-link-alt ml-2"></span></h3>
</div>
</a>
</div>
<div class="col-6 col-lg-3 mb-5">
<a href="@@path_pages/sign-up.html" class="page-preview scale-up-hover-2">
<img class="shadow-lg rounded scale" src="@@path/assets/img/presentation/all-pages/signup.jpg" alt="Contact page preview">
<div class="text-center show-on-hover">
<h3 class="h6 m-0 text-center text-white">Sign up<span class="fas fa-external-link-alt ml-2"></span></h3>
</div>
</a>
</div>
</div>
Loading