Files
OpenTimeTracker/templates/layout.html
2026-02-10 21:12:49 +01:00

437 lines
17 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>OpenTimeTracker</title>
<!-- Favicon: Simple Clock SVG -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%232383e2%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><circle cx=%2212%22 cy=%2212%22 r=%2210%22/><polyline points=%2212 6 12 12 16 14%22/></svg>">
<style>
:root {
--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
--bg-body: #ffffff;
--bg-input: #f7f7f5;
--text-primary: #37352f;
--text-secondary: #787774;
--border-dim: #ededed;
--border-focus: #aebfd1;
--primary-color: #2383e2;
--danger-color: #eb5757;
}
body {
font-family: var(--font-family);
background: var(--bg-body);
color: var(--text-primary);
margin: 0;
padding: 0;
line-height: 1.6;
-webkit-text-size-adjust: 100%;
}
/* Modern Navigation (Top) */
.top-nav {
background: rgba(255, 255, 255, 0.98); /* Less transparent for stability */
border-bottom: 1px solid var(--border-dim);
padding: 0.8rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 100; /* Lower than modal */
height: 60px;
box-sizing: border-box;
}
.brand {
font-weight: 600;
font-size: 1.1rem;
color: var(--text-primary);
letter-spacing: -0.02em;
display: flex; align-items: center; gap: 8px;
}
.top-nav a {
color: var(--text-secondary);
text-decoration: none;
margin-left: 20px;
font-size: 0.9rem;
font-weight: 500;
transition: color 0.15s;
}
.top-nav a:hover { color: var(--text-primary); }
.container {
max-width: 1100px;
margin: 2rem auto;
padding: 0 1.5rem;
min-height: 80vh; /* Ensure content area has height */
position: relative;
z-index: 1;
}
/* Clean Notion-style Cards */
.card {
background: white;
padding: 2rem;
border: 1px solid var(--border-dim);
border-radius: 4px;
margin-bottom: 1.5rem;
}
h2, h3, h4 { margin-top: 0; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; }
/* Beautiful Input Fields */
label {
display: block;
font-size: 0.75rem;
font-weight: 600;
color: var(--text-secondary);
margin-bottom: 0.5rem;
margin-top: 1.2rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
label:first-child { margin-top: 0; }
input[type="text"],
input[type="password"],
input[type="datetime-local"],
select,
textarea {
width: 100%;
padding: 10px 12px;
margin-bottom: 10px;
box-sizing: border-box;
border: 1px solid transparent;
border-radius: 4px;
background: var(--bg-input);
font-size: 0.95rem;
color: var(--text-primary);
font-family: inherit;
transition: all 0.2s;
-webkit-appearance: none; /* iOS fix */
}
input:focus, select:focus, textarea:focus {
outline: none;
background: white;
border-color: var(--border-focus);
box-shadow: 0 0 0 3px rgba(35, 131, 226, 0.1);
}
/* Custom Select Style */
select {
appearance: none;
background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2337352f%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
background-size: 10px;
padding-right: 30px;
}
/* Notion-like Number Stepper */
.stepper-input {
display: flex;
align-items: center;
background: var(--bg-input);
border-radius: 4px;
padding: 2px;
margin-bottom: 10px;
}
.stepper-input:focus-within {
background: white;
box-shadow: 0 0 0 3px rgba(35, 131, 226, 0.1);
}
.stepper-input button {
background: transparent;
border: none;
color: var(--text-secondary);
font-size: 1.2rem;
width: 36px;
height: 36px;
cursor: pointer;
display: flex; align-items: center; justify-content: center;
border-radius: 4px;
}
.stepper-input button:hover {
color: var(--text-primary);
background: rgba(0,0,0,0.05);
}
.stepper-input input {
flex: 1;
text-align: center;
margin: 0;
border: none;
background: transparent;
font-weight: 500;
}
.stepper-input input:focus {
box-shadow: none;
background: transparent;
}
/* Modern Checklist Styles */
.checklist-container {
list-style: none;
padding: 0;
margin: 1rem 0;
}
.checklist-item {
display: flex;
align-items: flex-start;
padding: 8px 0;
border-bottom: 1px solid var(--border-dim);
transition: opacity 0.2s;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item input[type="checkbox"] {
width: 18px;
height: 18px;
margin-right: 12px;
margin-top: 4px;
margin-bottom: 0;
accent-color: var(--primary-color);
cursor: pointer;
}
.checklist-item label {
margin: 0;
font-size: 0.95rem;
cursor: pointer;
line-height: 1.5;
text-transform: none;
color: var(--text-primary);
flex-grow: 1;
}
.checklist-item.completed label {
text-decoration: line-through;
color: var(--text-secondary);
}
.checklist-item.completed {
opacity: 0.7;
}
/* Minimalist Buttons */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px;
border: 1px solid transparent;
border-radius: 4px;
cursor: pointer;
font-size: 0.9rem;
font-weight: 500;
color: white;
background: var(--text-primary); /* Modern black buttons */
transition: opacity 0.2s, transform 0.1s;
text-decoration: none;
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.98); }
.btn-danger { background: transparent; border: 1px solid var(--border-dim); color: var(--danger-color); }
.btn-danger:hover { background: #fff5f5; border-color: #ffb3b3; }
/* Grid for Activities */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.activity-card {
height: 100px; display: flex; align-items: center; justify-content: center;
border-radius: 6px; color: white; font-weight: 600; cursor: pointer; text-align: center;
flex-direction: column; transition: transform 0.1s;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.activity-card:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
/* Specific Overrides */
.timer-display { font-size: 3.5rem; font-weight: 700; text-align: center; margin: 1.5rem 0; font-variant-numeric: tabular-nums; }
.active-section { border: 1px solid var(--primary-color); background: white; box-shadow: 0 4px 12px rgba(35, 131, 226, 0.1); }
small { color: var(--text-secondary); }
/* Modern Modal System */
.modal-backdrop {
display: none;
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
z-index: 2000;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.2s ease-in-out;
}
.modal-backdrop.show {
display: flex;
opacity: 1;
}
.modal-card {
background: white;
width: 100%; max-width: 480px;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
transform: scale(0.95);
transition: transform 0.2s ease-out;
max-height: 90vh;
overflow-y: auto;
}
.modal-backdrop.show .modal-card {
transform: scale(1);
}
/* Improved Date/Time Picker styling */
input[type="datetime-local"], input[type="date"], input[type="time"] {
appearance: none;
-webkit-appearance: none;
font-family: inherit;
color: var(--text-primary);
background: var(--bg-input);
cursor: pointer;
}
/* Customizing the icon */
::-webkit-calendar-picker-indicator {
filter: invert(0.4); /* Make icon grey */
cursor: pointer;
transition: opacity 0.2s;
}
::-webkit-calendar-picker-indicator:hover {
opacity: 1;
}
/* Mobile Responsive Styles */
.bottom-nav { display: none; }
.mobile-only { display: none; }
@media (max-width: 768px) {
.desktop-links { display: none; }
.top-nav { padding: 0.8rem 1rem; }
.container {
margin: 1.5rem auto;
padding-bottom: 100px;
padding-left: 1rem;
padding-right: 1rem;
}
/* Bottom Navigation */
.bottom-nav {
display: flex;
position: fixed;
bottom: 0; left: 0; width: 100%;
background: white;
border-top: 1px solid var(--border-dim);
justify-content: space-around;
padding: 10px 0 25px 0; /* Extra padding for iOS home indicator */
z-index: 1000;
box-shadow: 0 -2px 10px rgba(0,0,0,0.02);
}
.nav-item {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
color: var(--text-secondary);
font-size: 0.7rem;
gap: 4px;
padding: 5px;
flex: 1;
}
.nav-item svg { stroke-width: 2px; }
.nav-item.active { color: var(--primary-color); }
.nav-item.active svg { stroke: var(--primary-color); }
/* Mobile Modals (Bottom Sheet) */
.modal-backdrop { align-items: flex-end; }
.modal-card {
width: 100%;
max-width: 100%;
border-radius: 16px 16px 0 0;
margin: 0;
max-height: 85vh;
animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
from { transform: translateY(100%); }
to { transform: translateY(0); }
}
/* Adjust header for mobile */
h2 { font-size: 1.5rem; }
.mobile-only { display: block; }
}
</style>
</head>
<body>
<nav class="top-nav">
<a href="{{ url_for('index') }}" class="brand" style="text-decoration: none;">
<!-- Simple SVG Icon -->
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
OpenTimeTracker
</a>
<!-- Desktop Navigation -->
<div class="desktop-links">
{% if session.user_id %}
<a href="{{ url_for('index') }}">Tracker</a>
<a href="{{ url_for('tasks') }}">Tasks</a>
<a href="{{ url_for('goals') }}">Goals</a>
<a href="{{ url_for('logbook') }}">Logbook</a>
<a href="{{ url_for('logout') }}" style="color: var(--danger-color);">Logout</a>
{% else %}
<a href="{{ url_for('login') }}">Login</a>
<a href="{{ url_for('register') }}">Register</a>
{% endif %}
</div>
<!-- Mobile: Small user icon or logout -->
{% if session.user_id %}
<div class="mobile-only">
<a href="{{ url_for('logout') }}" style="color: var(--text-secondary); text-decoration: none;">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"/><polyline points="16 17 21 12 16 7"/><line x1="21" y1="12" x2="9" y2="12"/></svg>
</a>
</div>
{% endif %}
</nav>
<div class="container">
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
<div style="background: white; border: 1px solid var(--border-dim); color: var(--text-primary); padding: 12px; border-radius: 4px; margin-bottom: 20px; font-size: 0.9rem;">{{ message }}</div>
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
</div>
<!-- Mobile Bottom Navigation (Only authenticated) -->
{% if session.user_id %}
<nav class="bottom-nav">
<a href="{{ url_for('index') }}" class="nav-item {% if request.endpoint == 'index' %}active{% endif %}">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
<span>Tracker</span>
</a>
<a href="{{ url_for('tasks') }}" class="nav-item {% if request.endpoint == 'tasks' or request.endpoint == 'task_detail' %}active{% endif %}">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></svg>
<span>Tasks</span>
</a>
<a href="{{ url_for('goals') }}" class="nav-item {% if request.endpoint == 'goals' %}active{% endif %}">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="6"/><circle cx="12" cy="12" r="2"/></svg>
<span>Goals</span>
</a>
<a href="{{ url_for('logbook') }}" class="nav-item {% if request.endpoint == 'logbook' %}active{% endif %}">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg>
<span>Logbook</span>
</a>
</nav>
{% endif %}
</body>
</html>