SaaS/public/index.html
Claude Code bfbb2c7fa5 Initial commit: Click Counter SaaS Application
- Express.js server with static file serving
- Click counter frontend with localStorage persistence
- Optimized Docker setup with multi-stage build
- Production-ready configuration with health checks
- Automated deployment script for VPS
- Comprehensive deployment documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-29 10:25:12 +01:00

20 lines
540 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Счётчик кликов</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<main class="container">
<h1>Счётчик кликов</h1>
<div class="counter">
<div id="value">0</div>
<button id="inc">+1</button>
<button id="reset" class="secondary">Сброс</button>
</div>
</main>
<script src="/main.js" defer></script>
</body>
</html>