Files
TimeTrack/templates/about.html

284 lines
9.7 KiB
HTML

{% extends "layout.html" %}
{% block content %}
<section class="about">
<div class="about-content">
<div class="intro">
<h2>Professional Time Tracking Made Simple</h2>
<p>TimeTrack is a comprehensive multi-tenant time management solution designed to help organizations and individuals monitor work hours efficiently. Built with simplicity and accuracy in mind, our platform provides the tools you need to track, manage, and analyze time spent on work activities across multiple companies and teams.</p>
</div>
<div class="features-section">
<h2>Key Features</h2>
<div class="feature-grid">
<div class="feature-item">
<h3>🕐 Precise Time Tracking</h3>
<p>Track your work hours with precision. Simply click "Arrive" when you start working and "Leave" when you're done. Our system automatically calculates your work duration.</p>
</div>
<div class="feature-item">
<h3>⏸️ Smart Break Management</h3>
<p>Use the pause feature to track breaks accurately. The system automatically deducts break time from your total work hours and ensures compliance with mandatory break policies.</p>
</div>
<div class="feature-item">
<h3>👥 Team Management</h3>
<p>Managers can organize users into teams, monitor team performance, and track collective working hours. Role-based access ensures appropriate permissions for different user levels.</p>
</div>
<div class="feature-item">
<h3>📊 Comprehensive Reporting</h3>
<p>View detailed time entry history, team performance metrics, and individual productivity reports. Export data for payroll and project management purposes.</p>
</div>
<div class="feature-item">
<h3>🔧 Flexible Configuration</h3>
<p>Customize work hour requirements, mandatory break durations, and threshold settings to match your organization's policies and labor regulations.</p>
</div>
<div class="feature-item">
<h3>🏢 Multi-Company Support</h3>
<p>Enterprise-ready multi-tenant architecture allows multiple companies to operate independently within a single TimeTrack instance, with complete data isolation and security.</p>
</div>
<div class="feature-item">
<h3>🔐 Secure & Reliable</h3>
<p>Built with security best practices, user authentication, email verification, and role-based access control to protect your organization's data.</p>
</div>
</div>
</div>
<div class="roles-section">
<h2>User Roles & Permissions</h2>
<div class="role-cards">
<div class="role-card">
<h3>👤 Team Member</h3>
<p>Track personal work hours, manage breaks, view individual history, and update profile settings.</p>
</div>
<div class="role-card">
<h3>👨‍💼 Team Leader</h3>
<p>All team member features plus monitor team hours, view team member performance, and access team management tools.</p>
</div>
<div class="role-card">
<h3>👩‍💼 Supervisor</h3>
<p>Enhanced oversight capabilities with access to multiple teams and comprehensive reporting across supervised groups.</p>
</div>
<div class="role-card">
<h3>⚙️ Administrator</h3>
<p>Full company access including user management, team configuration, system settings, and complete administrative control within their company. Can also manage company information and setup new user registration.</p>
</div>
</div>
</div>
<div class="benefits-section">
<h2>Why Choose TimeTrack?</h2>
<div class="benefits-list">
<div class="benefit">
<h3>✅ Compliance Ready</h3>
<p>Automatically enforces break policies and work hour regulations to help your organization stay compliant with labor laws.</p>
</div>
<div class="benefit">
<h3>✅ Easy to Use</h3>
<p>Intuitive interface requires minimal training. Start tracking time immediately without complicated setup procedures.</p>
</div>
<div class="benefit">
<h3>✅ Scalable Solution</h3>
<p>Grows with your organization from small teams to large enterprises. Multi-tenant architecture supports multiple companies, complex organizational structures, and unlimited growth potential.</p>
</div>
<div class="benefit">
<h3>✅ Data-Driven Insights</h3>
<p>Generate meaningful reports and analytics to optimize productivity, identify trends, and make informed business decisions.</p>
</div>
</div>
</div>
<div class="technical-section">
<h2>Technical Information</h2>
<p>TimeTrack is built using modern web technologies including Flask (Python), SQLite database, and responsive HTML/CSS/JavaScript frontend. The application features a REST API architecture, secure session management, and email integration for user verification.</p>
</div>
<div class="company-setup-section">
<h2>Company Setup & Registration</h2>
<div class="setup-options">
<div class="setup-option">
<h3>🏢 New Company Setup</h3>
<p>Setting up TimeTrack for the first time or adding a new company? Create your company profile and administrator account to get started.</p>
</div>
<div class="setup-option">
<h3>👥 Join Existing Company</h3>
<p>Already have a company using TimeTrack? Get your company code from your administrator and register to join your organization.</p>
</div>
</div>
</div>
<div class="support-section">
<h2>Getting Started</h2>
<p>Ready to start tracking your time more effectively? <a href="{{ url_for('register') }}">Create an account</a> to begin, or <a href="{{ url_for('login') }}">log in</a> if you already have access. For questions or support, contact your system administrator.</p>
</div>
</div>
</section>
<style>
.about-content {
max-width: 1000px;
margin: 0 auto;
padding: 0 1rem;
}
.intro {
text-align: center;
margin: 2rem 0;
padding: 2rem;
background: #f8f9fa;
border-radius: 0.5rem;
}
.intro h2 {
color: #007bff;
margin-bottom: 1rem;
}
.features-section, .roles-section, .benefits-section, .technical-section, .support-section {
margin: 3rem 0;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
margin: 1.5rem 0;
}
.feature-item {
background: #fff;
border: 1px solid #dee2e6;
border-radius: 0.5rem;
padding: 1.5rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.feature-item h3 {
color: #007bff;
margin-bottom: 1rem;
}
.role-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
margin: 1.5rem 0;
}
.role-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 0.5rem;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.role-card h3 {
margin-bottom: 1rem;
font-size: 1.2rem;
}
.benefits-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 1.5rem;
margin: 1.5rem 0;
}
.benefit {
background: #e8f5e8;
border-left: 4px solid #28a745;
padding: 1.5rem;
border-radius: 0 0.5rem 0.5rem 0;
}
.benefit h3 {
color: #155724;
margin-bottom: 0.5rem;
}
.technical-section {
background: #f8f9fa;
padding: 2rem;
border-radius: 0.5rem;
border-left: 4px solid #6c757d;
}
.support-section {
text-align: center;
background: #007bff;
color: white;
padding: 2rem;
border-radius: 0.5rem;
}
.support-section a {
color: #fff;
text-decoration: underline;
font-weight: bold;
}
.support-section a:hover {
color: #cceeff;
}
.company-setup-section {
margin: 3rem 0;
}
.setup-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 1.5rem;
margin: 1.5rem 0;
}
.setup-option {
background: #f0f8ff;
border: 1px solid #b3d9ff;
border-radius: 0.5rem;
padding: 1.5rem;
border-left: 4px solid #007bff;
}
.setup-option h3 {
color: #0066cc;
margin-bottom: 1rem;
font-size: 1.2rem;
}
.setup-option p {
margin-bottom: 0;
color: #333;
line-height: 1.5;
}
@media (max-width: 768px) {
.feature-grid, .role-cards, .benefits-list, .setup-options {
grid-template-columns: 1fr;
}
.benefits-list .benefit {
min-width: auto;
}
.setup-options .setup-option {
min-width: auto;
}
}
</style>
{% endblock %}