Files
easystream-main/f_templates/tpl_auth_login.tpl
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

59 lines
2.5 KiB
Smarty

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sign In - EasyStream</title>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; margin: 0; padding: 20px; background: #f8f9fa; }
.login-container { max-width: 400px; margin: 50px auto; background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.logo { text-align: center; margin-bottom: 30px; }
.logo img { max-height: 50px; }
h1 { text-align: center; margin-bottom: 30px; color: #333; }
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 5px; font-weight: 500; }
input[type="text"], input[type="password"] { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; box-sizing: border-box; }
.btn { width: 100%; padding: 12px; background: #007bff; color: white; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; }
.btn:hover { background: #0056b3; }
.error { background: #f8d7da; color: #721c24; padding: 10px; border-radius: 6px; margin-bottom: 20px; }
.test-accounts { background: #e7f3ff; padding: 15px; border-radius: 6px; margin-top: 20px; text-align: center; font-size: 14px; }
.links { text-align: center; margin-top: 20px; }
.links a { color: #007bff; text-decoration: none; }
</style>
</head>
<body>
<div class="login-container">
<div class="logo">
<img src="/f_scripts/fe/img/logo-header-blue.svg" alt="EasyStream">
</div>
<h1>🔑 Sign In</h1>
{if isset($error)}
<div class="error">{$error}</div>
{/if}
<form method="post" action="">
<div class="form-group">
<label>Username</label>
<input type="text" name="username" required>
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="password" required>
</div>
<button type="submit" class="btn">Sign In</button>
</form>
<div class="test-accounts">
<strong>Test Accounts:</strong><br>
admin / admin123<br>
creator1 / creator123<br>
viewer1 / viewer123
</div>
<div class="links">
<a href="/">← Back to Homepage</a>
</div>
</div>
</body>
</html>