53d2d2ffef
- Implemented admin dashboard with user management features including role assignment and deletion. - Added user profile page for updating email and password. - Created separate routes and templates for text, image, and video generation with appropriate forms. - Enhanced navigation with dropdown for generation options and loading overlay for better user experience. - Introduced comprehensive error handling and user feedback through alerts. - Updated styles for improved UI consistency and responsiveness. Co-authored-by: Copilot <copilot@github.com>
10 lines
256 B
HTML
10 lines
256 B
HTML
{% extends "base.html" %} {% block title %}Generate — AI Allucanget{% endblock
|
|
%} {% block content %}
|
|
<div class="card">
|
|
<h1>Generate</h1>
|
|
<p class="text-muted">
|
|
Choose a generation type from the Generate menu above.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|