flask-base/templates/resources.html

27 lines
928 B
HTML

{% extends "base.html" %}
{% block title %}Resources{% endblock %}
{% block content %}
<div class="container mt-4">
<h2>Welcome to Management Portal</h2>
{% if current_user.company_id %}
<div class="card shadow border-0 bg-light">
<div class="card-body text-center py-5">
<p>You are logged in for company: <strong>{{ current_user.company.name }}</strong></p>
{% if current_user.is_company_admin or current_user.role == 'admin' %}
<a href="{{ url_for('company_admin') }}" class="btn btn-primary me-3">Go to Admin</a>
{% endif %}
</div>
</div>
{% else %}
<div class="alert alert-info py-4 text-center" role="alert">
You are not associated with any company. Please create a new account or log in to get started.
<a href="{{ url_for('login') }}" class="btn btn-primary mt-2 ms-3">Log In</a>
</div>
{% endif %}
</div>
{% endblock %}