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

Bootstrap 5 & New Dashboard UI [Draft] #466

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
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
29 changes: 10 additions & 19 deletions appname/assets.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from flask_assets import Bundle

common_css = Bundle(
'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css',
'https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css',
'css/vendor/helper.css',
'css/main.css',
'css/overrides.css',
Expand All @@ -10,9 +10,8 @@
)

common_js = Bundle(
'https://code.jquery.com/jquery-3.2.1.slim.min.js',
'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js',
'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js',
'https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js',
'https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js',
Bundle(
'js/main.js',
filters='jsmin'
Expand All @@ -33,19 +32,15 @@
)

tabler_css = Bundle(
'https://rawcdn.githack.com/Sumukh/Ignite/70bf953851a356e785528b56ca105042074a3d5a/appname/static/tabler/css/dashboard.css',
'https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/css/tabler.min.css',
'https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta21/dist/css/tabler-vendors.min.css',
'css/overrides.css',
filters='cssmin',
output='public/css/tabler.css'
)

tabler_js = Bundle(
'tabler/js/vendors/jquery-3.2.1.min.js',
'tabler/js/vendors/bootstrap.bundle.min.js',
'tabler/js/vendors/circle-progress.min.js',
'tabler/js/vendors/selectize.min.js',
'tabler/js/vendors/jquery.tablesorter.min.js',
'tabler/js/core.js',
'https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta21/dist/js/tabler.min.js',
output='public/js/tabler.js'
)

Expand All @@ -55,14 +50,10 @@
)

tabler_plugins_js = Bundle(
'tabler/js/vendors/chart.bundle.min.js',
'tabler/js/vendors/jquery.sparkline.min.js',
'tabler/js/vendors/jquery-jvectormap-2.0.3.min.js',
'tabler/js/vendors/jquery-jvectormap-de-merc.js',
'tabler/js/vendors/jquery-jvectormap-world-mill.js',
'tabler/js/plugins/charts-c3/js/d3.v3.min.js',
'tabler/js/plugins/charts-c3/js/c3.min.js',
'tabler/js/plugins/input-mask/js/jquery.mask.min.js',
'https://cdn.jsdelivr.net/npm/apexcharts',
'https://cdn.jsdelivr.net/npm/choices.js@9.0.1/public/assets/scripts/choices.min.js',
'https://cdn.jsdelivr.net/npm/litepicker/dist/litepicker.js',
'https://cdn.jsdelivr.net/npm/tom-select@2.3.1/dist/js/tom-select.complete.min.js',
# Other Plugins as needed.
output='public/js/tabler-plugins.js'
)
48 changes: 25 additions & 23 deletions appname/templates/auth/invite.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,36 @@
{% block title %}appname Signup{% endblock %}

{% block body %}
<div class="page-single">
<div class="container">
<div class="row">
<div class="col col-login mx-auto">
<div class="text-center mb-6">
<img src="{{ url_for('static', filename='public/ignite/ignite-logo@2x.png') }}" class="h-6" alt="Tabler">
<h2> appname </h2>
</div>
<form role="form" class="card" action="{{ url_for('auth.signup', invite_secret=invite.invite_secret) }}" method="post">

<div class="card-body p-6">
<div class="card-title">Join {{ invite.team.name }} on appname </div>
<p>You've been invited to appname. Complete the signup below to join {{ invite.team.name }}.</p>
{{ form.hidden_tag() }}
{{ render_field(form.email, value=invite.invite_email) }}
{{ render_field(form.password) }}
{{ render_field(form.confirm) }}
{{ render_field(form.invite_secret, value=invite.invite_secret, label_hidden=true) }}
<div class="page page-center">
<div class="container container-tight py-4">
<div class="text-center mb-4">
<a href="." class="navbar-brand navbar-brand-autodark">
{{ render_flashes() }}
<img src="{{ url_for('static', filename='public/ignite/ignite-logo@2x.png') }}" class="h-6" >
</a>
</div>
<div class="card card-md">
<div class="card-body">
<h2 class="h2 text-center mb-4">Join {{ invite.team.name }} on appname</h2>
<form role="form" action="{{ url_for('auth.signup', invite_secret=invite.invite_secret) }}" method="post">
<p>You've been invited to appname. Complete the signup below to join {{ invite.team.name }}.</p>

<div class="form-footer">
<button type="submit" class="btn btn-primary btn-block">Sign Up</button>
</div>
</form>
{{ form.hidden_tag() }}
{{ render_field(form.email, value=invite.invite_email) }}
{{ render_field(form.password) }}
{{ render_field(form.confirm) }}
{{ render_field(form.invite_secret, value=invite.invite_secret, label_hidden=true) }}
<div class="form-footer">
<button type="submit" class="btn btn-primary w-100">Sign up</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>


{% include 'tabler/_footer.html' with context %}

{% endblock %}
70 changes: 34 additions & 36 deletions appname/templates/auth/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,45 +5,43 @@
{% block title %}appname Login Example{% endblock %}

{% block body %}
<div class="page-single">
<div class="container">
<div class="row">
<div class="col col-login mx-auto">
<div class="text-center mb-6">
{{ render_flashes() }}
<img src="{{ url_for('static', filename='public/ignite/ignite-logo@2x.png') }}" class="h-6" alt="Tabler">
<div class="page page-center">
<div class="container container-tight py-4">
<div class="text-center mb-4">
<a href="." class="navbar-brand navbar-brand-autodark">
{{ render_flashes() }}
<img src="{{ url_for('static', filename='public/ignite/ignite-logo@2x.png') }}" class="h-6" >
</a>
</div>
<div class="card card-md">
<div class="card-body">
<h2 class="h2 text-center mb-4">Login to your account</h2>
<form role="form" action="{{ url_for('auth.login') }}" method="post">
{{ form.hidden_tag() }}
{{ render_field(form.email, placeholder='test@example.com') }}
{{ render_field(form.password, placeholder='Password') }}
<small class="float-right mb-2">
<a href="{{ url_for('auth.request_password_reset') }}"> Help! I forgot my password </a>
</small>
<div class="form-footer">
<button type="submit" class="btn btn-primary w-100">Sign in</button>
</div>
<form role="form" class="card" action="{{ url_for('auth.login') }}" method="post">

<div class="card-body p-6">
<div class="card-title">Login to your account</div>
{{ form.hidden_tag() }}
{{ render_field(form.email, placeholder='test@example.com') }}
{{ render_field(form.password, placeholder='Password') }}
<small class="float-right mb-2">
<a href="{{ url_for('auth.request_password_reset') }}"> Help! I forgot my password </a>
</small>
<div class="form-footer">
<button type="submit" class="btn btn-primary btn-block">Login</button>
</div>
</form>
<div class="text-center text-muted">
<hr class="thin" />
</div>
{% if features.oauth %}
<div class="text-center mt-4 mb-4">
<a href="{{ url_for('google.login') }}" class="btn btn-primary btn-block">
<i class="fa fa-google"></i> Login with Google
</a>
</div>
{% endif %}
<div class="text-center text-muted mt-3">
Don't have an account yet? <a href="{{ url_for('auth.signup') }}" class="btn btn-primary btn-block">Sign Up</a>
</div>
</div>
</form>
</div>
{% if features.oauth %}
<div class="hr-text">or</div>
<div class="text-center mt-4 mb-4">
<a href="{{ url_for('google.login') }}" class="btn btn-primary btn-block">
<i class="fa fa-google"></i> Login with Google
</a>
</div>
{% endif %}
</div>
<div class="text-center text-secondary mt-3">
Don't have an account yet? <a href="{{ url_for('auth.signup') }}">Sign Up</a>
</div>
</div>
</div>
</div>
</div>
{% include 'tabler/_footer.html' with context %}

Expand Down
43 changes: 31 additions & 12 deletions appname/templates/auth/oauth_only_login.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,44 @@
</div>
<div class="card">
<div class="text-center mt-4 mb-4">
{% if features.oauth %}
<a href="{{ url_for('google.login') }}" class="btn btn-primary btn-block">
<i class="fa fa-google"></i> Login with Google
</a>
{% else %}
It is not possible to login to appname right now because OAuth Login has not been configured.
{% endif %}
</div>
</div>
{% if constants.ALLOW_SIGNUPS %}
<div class="text-center text-muted mt-3">
Don't have an account yet? <a href="{{ url_for('auth.signup') }}" class="btn btn-primary btn-block">Sign Up</a>
</div>
{% endif %}

</div>
</div>
</div>
</div>

<div class="page page-center">
<div class="container container-tight py-4">
<div class="text-center mb-4">
<a href="." class="navbar-brand navbar-brand-autodark">
{{ render_flashes() }}
<img src="{{ url_for('static', filename='public/ignite/ignite-logo@2x.png') }}" class="h-6" >
</a>
</div>
<div class="card card-md">
<div class="card-body">
<h2 class="h2 text-center mb-4">Log in to appname</h2>

{% if features.oauth %}
<a href="{{ url_for('google.login') }}" class="btn btn-primary w-100">
<i class="fa fa-google"></i> Login with Google
</a>
{% else %}
It is not possible to login to appname right now because OAuth Login has not been configured.
{% endif %}
{% if constants.ALLOW_SIGNUPS %}
<div class="text-center text-muted mt-3">
Don't have an account yet? <a href="{{ url_for('auth.signup') }}" class="btn btn-primary w-100">Sign Up</a>
</div>
{% endif %}
</div>
</div>
</div>
</div>
</div>

{% include 'tabler/_footer.html' with context %}

{% endblock %}
30 changes: 19 additions & 11 deletions appname/templates/auth/reauth.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,25 @@
{% block title %}appname Login Example{% endblock %}

{% block body %}
<div class="page-single">
<div class="container">
<div class="row">
<div class="col col-login mx-auto">
<div class="card-body p-6">
<div class="card-title">Confirm your login in order to procceed</div>
<form role="form" action="{{ url_for('auth.login') }}" method="post">
{{ form.hidden_tag() }} {{ render_field(form.email) }} {{ render_field(form.password) }}
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<div class="page page-center">
<div class="container container-tight py-4">
<div class="text-center mb-4">
<a href="." class="navbar-brand navbar-brand-autodark">
{{ render_flashes() }}
<img src="{{ url_for('static', filename='public/ignite/ignite-logo@2x.png') }}" class="h-6" >
</a>
</div>
<div class="card card-md">
<div class="card-body">
<h2 class="h2 text-center mb-4">Login to your account</h2>
<form role="form" action="{{ url_for('auth.login') }}" method="post">
{{ form.hidden_tag() }}
{{ render_field(form.email) }}
{{ render_field(form.password) }}
<div class="form-footer">
<button type="submit" class="btn btn-primary w-100">Submit</button>
</div>
</form>
</div>
</div>
</div>
Expand Down
55 changes: 28 additions & 27 deletions appname/templates/auth/request_password_reset.html
Original file line number Diff line number Diff line change
@@ -1,38 +1,39 @@
{% extends "tabler/minimal_base.html" %}
{% from "helpers/_formhelpers.html" import render_field %}

{% block title %}appname Login Example{% endblock %}
{% block title %}appname Reset Password{% endblock %}

{% block body %}
<div class="page-single">
<div class="container">
<div class="row">
<div class="col col-login mx-auto">
<div class="text-center mb-6">
{{ render_flashes() }}
<img src="{{ url_for('static', filename='public/ignite/ignite-logo@2x.png') }}" class="h-6" alt="Tabler">
</div>

<form role="form" class="card" action="{{ url_for('auth.request_password_reset') }}" method="post">

<div class="card-body p-6">
<div class="card-title">Reset your password </div>
{{ form.hidden_tag() }}
{{ render_field(form.email, placeholder='test@example.com') }}
<div class="form-footer">
<button type="submit" class="btn btn-primary btn-block">Send Reset Link</button>
</div>
<small class="float-right mt-2">
<a href="{{ url_for('auth.login') }}"> Actually, I remember my password now </a>
</small>

</div>
</form>

<div class="page page-center">
<div class="container container-tight py-4">
<div class="text-center mb-4">
<a href="." class="navbar-brand navbar-brand-autodark">
{{ render_flashes() }}
<img src="{{ url_for('static', filename='public/ignite/ignite-logo@2x.png') }}" class="h-6" >
</a>
</div>
<div class="card card-md">
<div class="card-body">
<h2 class="h2 text-center mb-4">Reset your password</h2>
<form role="form" action="{{ url_for('auth.request_password_reset') }}" method="post">

{{ form.hidden_tag() }}
{{ render_field(form.email, placeholder='test@example.com') }}

<div class="form-footer mt-2">
<button type="submit" class="btn btn-primary w-100">Send Reset Link</button>
</div>
</div>
</form>
</div>

</div>
<div class="text-center text-secondary mt-3">
Actually, I remember my password now? <a href="{{ url_for('auth.login') }}">Log in</a>
</div>
</div>
</div>


{% include 'tabler/_footer.html' with context %}

{% endblock %}
Expand Down
Loading
Loading