updated color scheme to dark mode

This commit is contained in:
2026-05-27 10:06:39 +02:00
parent ff370d0d39
commit 1d9154e664
5 changed files with 245 additions and 94 deletions

View File

@ -224,7 +224,7 @@ function showCreateForm() {
<div class="form-group" style="flex:1;min-width:160px">
<label>Role</label>
${isSupervisor
? `<input type="text" value="Coach" disabled style="background:#f8fafc">`
? `<input type="text" value="Coach" disabled>`
: `<select id="cu_role">
${allowedRoles.map(r =>
`<option value="${r}">${r.charAt(0).toUpperCase() + r.slice(1)}</option>`
@ -242,7 +242,7 @@ function showCreateForm() {
<div id="cu_supervisor_row" class="form-group" style="${isSupervisor ? '' : 'display:none'}">
<label>Supervisor</label>
${isSupervisor
? `<input type="text" value="You (auto-assigned)" disabled style="background:#f8fafc">`
? `<input type="text" value="You (auto-assigned)" disabled>`
: `<select id="cu_supervisor_select">
<option value="">— select supervisor —</option>
${supervisorsList.map(s =>