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.
 
 
 

31 lines
844 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 text-center mb-4">
<h1 class="display-4 fw-bold">
Welcome to Plutus
</h1>
<p class="lead">
Payment Processing System
</p>
</div>
<img src="{{ url_for('static', filename='images/plutus3.JPG') }}" alt="Plutus - God of Wealth" class="plutus-image img-fluid rounded shadow-sm mb-4">
<div class="alert alert-info">
<h4 class="h5 mb-2">Welcome, {{ current_user.FullName }}!</h4>
<p class="mb-0">You are successfully logged into the Plutus payment processing system.</p>
</div>
{% endblock %}