3fe8a47e04
- Add 85 custom Dildo items (knife/skin pattern names, various rarities) - Create Dildo Case config (hidden, items obtained via contracts) - Fix admin user_detail.html nested script tag (Notify fallback removed) - Fix admin cases.html embedded script tag - Add notifications.js to admin base.html - Fix admin users.html: use counts instead of relationship lists - Replace old money format with |money filter across all templates - Standardize nav partial (_nav.html) with active_page highlighting - Fix RARITY_COLORS rename in activity sidebar - Fix toast animation (forwards) and remove duplicate CSS - Replace showToast() with Notify.* in upgrade page - Add cs2_simulator.db and *.log to .gitignore - Create remote-deploy.sh with DB exclusion
45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CS2 Trade-Up Simulator</title>
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
</head>
|
|
<body>
|
|
{% include "_nav.html" %}
|
|
|
|
<main class="hero">
|
|
<div class="container">
|
|
<h1>CS2 Trade-Up Simulator</h1>
|
|
<p class="hero-subtitle">Открывай кейсы, собирай скины и создавай контракты</p>
|
|
|
|
<div class="features">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📦</div>
|
|
<h3>Открывай кейсы</h3>
|
|
<p>Испытай удачу и получи редкие скины</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔄</div>
|
|
<h3>Создавай контракты</h3>
|
|
<p>Обменивай 10 скинов на один более редкий</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📊</div>
|
|
<h3>Собирай коллекцию</h3>
|
|
<p>Отслеживай свой прогресс и статистику</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hero-actions">
|
|
<a href="/register" class="btn btn-primary btn-large">Начать играть</a>
|
|
<a href="/login" class="btn btn-outline btn-large">Уже есть аккаунт</a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="/static/js/app.js"></script>
|
|
<script src="/static/js/safemode.js"></script>
|
|
</body>
|
|
</html> |