You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
874 B
33 lines
874 B
{% extends "base.html" %}
|
|
|
|
{% block title %}Dashboard - Plutus{% endblock %}
|
|
|
|
{% block head %}
|
|
<style>
|
|
body {
|
|
background-image: none !important;
|
|
background-color: var(--plutus-warm-white) !important;
|
|
}
|
|
body::before {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="hero is-primary">
|
|
<div class="hero-body has-text-centered">
|
|
<h1 class="title">
|
|
Welcome to Plutus
|
|
</h1>
|
|
<h2 class="subtitle">
|
|
Payment Processing System
|
|
</h2>
|
|
</div>
|
|
</div>
|
|
<img src="{{ url_for('static', filename='images/plutus3.JPG') }}" alt="Plutus - God of Wealth" class="plutus-image">
|
|
<div class="notification is-info">
|
|
<h4 class="title is-5">Welcome, {{ current_user.FullName }}!</h4>
|
|
<p>You are successfully logged into the Plutus payment processing system.</p>
|
|
</div>
|
|
{% endblock %}
|