generated from app-generator/boilerplate-code-jinja
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
App Generator
committed
Jan 19, 2022
1 parent
1177b9c
commit 02092b1
Showing
34 changed files
with
2,737 additions
and
20,265 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
{% extends "layouts/base-fullscreen.html" %} | ||
|
||
{% block title %} Sign UP {% endblock %} | ||
|
||
{% block body_class %} sign-in-basic {% endblock %} | ||
|
||
<!-- Specific Page CSS goes HERE --> | ||
{% block stylesheets %}{% endblock stylesheets %} | ||
|
||
{% block content %} | ||
|
||
{% include 'includes/navigation-transparent.html' %} | ||
|
||
<div class="page-header align-items-start min-vh-100" style="background-image: url('https://images.unsplash.com/photo-1497294815431-9365093b7331?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1950&q=80');" loading="lazy"> | ||
<span class="mask bg-gradient-dark opacity-6"></span> | ||
<div class="container my-auto"> | ||
<div class="row"> | ||
<div class="col-lg-4 col-md-8 col-12 mx-auto"> | ||
<div class="card z-index-0 fadeIn3 fadeInBottom"> | ||
<div class="card-header p-0 position-relative mt-n4 mx-3 z-index-2"> | ||
<div class="bg-gradient-primary shadow-primary border-radius-lg py-3 pe-1"> | ||
<h4 class="text-white font-weight-bolder text-center mt-2 mb-0">Sign UP</h4> | ||
<div class="row mt-3"> | ||
<div class="col-2 text-center ms-auto"> | ||
<a class="btn btn-link px-3" href="javascript:;"> | ||
<i class="fa fa-facebook text-white text-lg"></i> | ||
</a> | ||
</div> | ||
<div class="col-2 text-center px-1"> | ||
<a class="btn btn-link px-3" href="javascript:;"> | ||
<i class="fa fa-github text-white text-lg"></i> | ||
</a> | ||
</div> | ||
<div class="col-2 text-center me-auto"> | ||
<a class="btn btn-link px-3" href="javascript:;"> | ||
<i class="fa fa-google text-white text-lg"></i> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card-body"> | ||
<form role="form" class="text-start"> | ||
<div class="input-group input-group-outline my-3"> | ||
<label class="form-label">Username</label> | ||
<input class="form-control"> | ||
</div> | ||
<div class="input-group input-group-outline my-3"> | ||
<label class="form-label">Email</label> | ||
<input type="email" class="form-control"> | ||
</div> | ||
<div class="input-group input-group-outline mb-3"> | ||
<label class="form-label">Password</label> | ||
<input type="password" class="form-control"> | ||
</div> | ||
<div class="form-check form-switch d-flex align-items-center mb-3"> | ||
<input class="form-check-input" type="checkbox" id="rememberMe"> | ||
<label class="form-check-label mb-0 ms-2" for="rememberMe">Remember me</label> | ||
</div> | ||
<div class="text-center"> | ||
<button type="button" class="btn bg-gradient-primary w-100 my-4 mb-2">Sign UP</button> | ||
</div> | ||
<p class="mt-4 text-sm text-center"> | ||
Already have an account? | ||
<a href="/sign-in.html" class="text-primary text-gradient font-weight-bold">Sign IN</a> | ||
</p> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{% include 'includes/footer-auth.html' %} | ||
|
||
</div> | ||
|
||
{% endblock content %} | ||
|
||
<!-- Specific Page JS goes HERE --> | ||
{% block javascripts %}{% endblock javascripts %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.