Files
easystream-main/test_links.html
SamiAhmed7777 0b7e2d0a5b feat: Add comprehensive documentation suite and reorganize project structure
- Created complete documentation in docs/ directory
- Added PROJECT_OVERVIEW.md with feature highlights and getting started guide
- Added ARCHITECTURE.md with system design and technical details
- Added SECURITY.md with comprehensive security implementation guide
- Added DEVELOPMENT.md with development workflows and best practices
- Added DEPLOYMENT.md with production deployment instructions
- Added API.md with complete REST API documentation
- Added CONTRIBUTING.md with contribution guidelines
- Added CHANGELOG.md with version history and migration notes
- Reorganized all documentation files into docs/ directory for better organization
- Updated README.md with proper documentation links and quick navigation
- Enhanced project structure with professional documentation standards
2025-10-21 00:39:45 -07:00

32 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Link Test - EasyStream</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; background: #f8f9fa; }
.container { max-width: 600px; margin: 0 auto; background: white; padding: 30px; border-radius: 12px; }
.test-link { display: block; padding: 15px; margin: 10px 0; background: #007bff; color: white; text-decoration: none; border-radius: 6px; text-align: center; }
.test-link:hover { background: #0056b3; color: white; }
.working { background: #28a745; }
.broken { background: #dc3545; }
</style>
</head>
<body>
<div class="container">
<h1>🔗 EasyStream Link Test</h1>
<p>Click each link to test if it works:</p>
<a href="signin.php" class="test-link">🔑 Sign In (signin.php)</a>
<a href="register.php" class="test-link">📝 Register (register.php)</a>
<a href="browse.php" class="test-link">📺 Browse (browse.php)</a>
<a href="upload.php" class="test-link">📤 Upload (upload.php)</a>
<hr>
<h3>Alternative Access</h3>
<a href="homepage_simple.html" class="test-link working">🏠 Simple Homepage (No Routing Issues)</a>
<hr>
<p><strong>If any links above give 404 errors, use the Simple Homepage instead.</strong></p>
</div>
</body>
</html>