- Add horizontal nav menu with 7 items: Profile, Characters, Sessions, Mechanics, Leaderboard, Settings, Help - Implement responsive hamburger menu for mobile (≤768px) - Create pages blueprint with stub routes for new pages - Add "Coming Soon" styled stub templates with icons - Include active state highlighting for current page 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
963 B
HTML
25 lines
963 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Profile - Code of Conquest{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="page-container">
|
|
<div class="coming-soon-card">
|
|
<h1 class="page-title">Player Profile</h1>
|
|
<div class="coming-soon-icon">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/>
|
|
<circle cx="12" cy="7" r="4"/>
|
|
</svg>
|
|
</div>
|
|
<p class="coming-soon-text">Coming Soon</p>
|
|
<p class="coming-soon-description">
|
|
View your player statistics, achievements, and adventure history.
|
|
</p>
|
|
<a href="{{ url_for('character_views.list_characters') }}" class="btn btn-primary">
|
|
Back to Characters
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|