Files
TimeTrack/templates/setup_company.html
Jens Luedicke 9a79778ad6 Squashed commit of the following:
commit 1eeea9f83ad9230a5c1f7a75662770eaab0df837
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 21:15:41 2025 +0200

    Disable resuming of old time entries.

commit 3e3ec2f01cb7943622b819a19179388078ae1315
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 20:59:19 2025 +0200

    Refactor db migrations.

commit 15a51a569da36c6b7c9e01ab17b6fdbdee6ad994
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 19:58:04 2025 +0200

    Apply new style for Time Tracking view.

commit 77e5278b303e060d2b03853b06277f8aa567ae68
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 18:06:04 2025 +0200

    Allow direct registrations as a Company.

commit 188a8772757cbef374243d3a5f29e4440ddecabe
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 18:04:45 2025 +0200

    Add email invitation feature.

commit d9ebaa02aa01b518960a20dccdd5a327d82f30c6
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 17:12:32 2025 +0200

    Apply common style for Company, User, Team management pages.

commit 81149caf4d8fc6317e2ab1b4f022b32fc5aa6d22
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 16:44:32 2025 +0200

    Move export functions to own module.

commit 1a26e19338e73f8849c671471dd15cc3c1b1fe82
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 15:51:15 2025 +0200

    Split up models.py.

commit 61f1ccd10f721b0ff4dc1eccf30c7a1ee13f204d
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 12:05:28 2025 +0200

    Move utility function into own modules.

commit 84b341ed35e2c5387819a8b9f9d41eca900ae79f
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 11:44:24 2025 +0200

    Refactor auth functions use.

commit 923e311e3da5b26d85845c2832b73b7b17c48adb
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 11:35:52 2025 +0200

    Refactor route nameing and fix bugs along the way.

commit f0a5c4419c340e62a2615c60b2a9de28204d2995
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 10:34:33 2025 +0200

    Fix URL endpoints in announcement template.

commit b74d74542a1c8dc350749e4788a9464d067a88b5
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 09:25:53 2025 +0200

    Move announcements to own module.

commit 9563a28021ac46c82c04fe4649b394dbf96f92c7
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 09:16:30 2025 +0200

    Combine Company view and edit templates.

commit 6687c373e681d54e4deab6b2582fed5cea9aadf6
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 08:17:42 2025 +0200

    Move Users, Company and System Administration to own modules.

commit 8b7894a2e3eb84bb059f546648b6b9536fea724e
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 07:40:57 2025 +0200

    Move Teams and Projects to own modules.

commit d11bf059d99839ecf1f5d7020b8c8c8a2454c00b
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 07:09:33 2025 +0200

    Move Tasks and Sprints to own modules.
2025-07-07 21:16:36 +02:00

261 lines
7.9 KiB
HTML

{% extends "layout.html" %}
{% block content %}
<div class="admin-container">
<h1>
{% if is_initial_setup %}
Welcome to {{ g.branding.app_name }}
{% else %}
Create New Company
{% endif %}
</h1>
<!-- Info Message -->
{% if is_initial_setup %}
<div class="info-message">
<h3>🎉 Let's Get Started!</h3>
<p>Set up your company and create the first administrator account to begin using {{ g.branding.app_name }}.</p>
</div>
{% elif is_super_admin %}
<div class="info-message">
<h3>🏢 New Company Setup</h3>
<p>Create a new company with its own administrator. This will be a separate organization within {{ g.branding.app_name }}.</p>
</div>
{% else %}
<div class="error-message">
<h3>⚠️ Access Denied</h3>
<p>You do not have permission to create new companies.</p>
<a href="{{ url_for('home') }}" class="btn btn-secondary">Return Home</a>
</div>
{% set show_form = false %}
{% endif %}
{% if is_initial_setup or is_super_admin %}
{% set show_form = true %}
{% endif %}
{% if show_form %}
<form method="POST" class="company-setup-form">
<!-- Company Information Section -->
<div class="form-section">
<h2>Company Information</h2>
<div class="form-group">
<label for="company_name">Company Name</label>
<input type="text" id="company_name" name="company_name" class="form-control"
value="{{ request.form.company_name or '' }}" required autofocus
placeholder="e.g., Acme Corporation">
<small class="form-help">This will be displayed throughout the application</small>
</div>
<div class="form-group">
<label for="company_description">Description (Optional)</label>
<textarea id="company_description" name="company_description" class="form-control"
rows="3" placeholder="Brief description of your company">{{ request.form.company_description or '' }}</textarea>
</div>
</div>
<!-- Administrator Account Section -->
<div class="form-section">
<h2>Administrator Account</h2>
<div class="form-row">
<div class="form-group">
<label for="admin_username">Username</label>
<input type="text" id="admin_username" name="admin_username" class="form-control"
value="{{ request.form.admin_username or '' }}" required>
</div>
<div class="form-group">
<label for="admin_email">Email</label>
<input type="email" id="admin_email" name="admin_email" class="form-control"
value="{{ request.form.admin_email or '' }}" required>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="admin_password">Password</label>
<input type="password" id="admin_password" name="admin_password" class="form-control" required>
<small class="form-help">Minimum 6 characters</small>
</div>
<div class="form-group">
<label for="confirm_password">Confirm Password</label>
<input type="password" id="confirm_password" name="confirm_password" class="form-control" required>
</div>
</div>
<div class="admin-info">
<h3>Administrator Privileges</h3>
<p>
{% if is_initial_setup %}
This account will have full access to manage users, teams, and projects within your company.
{% else %}
This administrator will have full control over the new company and its users, teams, and projects.
{% endif %}
</p>
</div>
</div>
<!-- Form Actions -->
<div class="form-actions">
{% if is_super_admin %}
<a href="{{ url_for('companies.admin_company') }}" class="btn btn-secondary">
← Back to Dashboard
</a>
{% endif %}
<button type="submit" class="btn btn-success">
🚀 {% if is_initial_setup %}Create Company & Admin Account{% else %}Create New Company{% endif %}
</button>
</div>
</form>
{% if is_initial_setup and existing_companies > 0 %}
<div class="alternative-actions">
<p>Already have an account?</p>
<a href="{{ url_for('login') }}" class="btn btn-secondary">Go to Login</a>
</div>
{% endif %}
{% endif %}
</div>
<script>
// Form validation
function validatePasswords() {
const password = document.getElementById('admin_password').value;
const confirmPassword = document.getElementById('confirm_password').value;
const confirmField = document.getElementById('confirm_password');
if (password && confirmPassword && password !== confirmPassword) {
confirmField.setCustomValidity('Passwords do not match');
return false;
} else {
confirmField.setCustomValidity('');
return true;
}
}
document.getElementById('confirm_password').addEventListener('input', validatePasswords);
document.getElementById('admin_password').addEventListener('input', validatePasswords);
// Form submission validation
document.querySelector('.company-setup-form').addEventListener('submit', function(e) {
if (!validatePasswords()) {
e.preventDefault();
alert('Please ensure passwords match before submitting.');
}
});
</script>
<style>
.company-setup-form {
max-width: 800px;
margin: 0 auto;
}
.form-section {
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
padding: 30px;
margin-bottom: 30px;
}
.form-section h2 {
margin-top: 0;
margin-bottom: 20px;
color: #333;
border-bottom: 2px solid #007bff;
padding-bottom: 10px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
@media (max-width: 768px) {
.form-row {
grid-template-columns: 1fr;
}
}
.info-message {
background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
border: 1px solid #b3d9ff;
border-radius: 12px;
padding: 30px;
margin-bottom: 30px;
text-align: center;
}
.info-message h3 {
margin-top: 0;
color: #0066cc;
font-size: 24px;
}
.info-message p {
margin-bottom: 0;
color: #555;
font-size: 16px;
}
.error-message {
background: #fff5f5;
border: 1px solid #fed7d7;
border-radius: 12px;
padding: 30px;
margin-bottom: 30px;
text-align: center;
}
.error-message h3 {
margin-top: 0;
color: #c53030;
font-size: 24px;
}
.error-message p {
margin-bottom: 20px;
color: #555;
font-size: 16px;
}
.admin-info {
background: #e7f3ff;
border: 1px solid #b3d9ff;
border-radius: 8px;
padding: 20px;
margin-top: 20px;
}
.admin-info h3 {
margin-top: 0;
margin-bottom: 10px;
color: #0066cc;
font-size: 16px;
}
.admin-info p {
margin-bottom: 0;
color: #555;
line-height: 1.5;
}
.alternative-actions {
text-align: center;
margin-top: 30px;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
}
.alternative-actions p {
margin-bottom: 15px;
color: #666;
}
</style>
{% endblock %}