16 lines
381 B
HTML
16 lines
381 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}Dashboard - MarketMatchr{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h1>Welcome, {{ user.username }}!</h1>
|
|
<p>This is your dashboard. You are logged in as a {{ user.role }}.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|