- Rename app from FantasyCron to GameTime across all templates and code - Update league color palette to 6 visually distinct colors (navy, gold, purple, pink, turquoise, plum) - Add subtle league footer to game cards showing which leagues have players with player counts - Bump version to 1.0.0 - Update Docker compose service name to match rebrand 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
704 B
HTML
24 lines
704 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}GameTime - Enter Username{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="welcome-container">
|
|
<div class="brand">
|
|
<h1 class="app-name">GameTime</h1>
|
|
<div class="tagline">* * * * 0,1,4</div>
|
|
</div>
|
|
<p>Enter your Sleeper username to view your fantasy teams</p>
|
|
|
|
<!-- Username input form -->
|
|
<form class="username-form" method="get" action="/dashboard">
|
|
<input type="text" name="username" placeholder="Enter Sleeper username" required>
|
|
<button type="submit">View Dashboard</button>
|
|
</form>
|
|
|
|
<div class="example">
|
|
<p>Example: <code>sleeperuser</code></p>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|