diff --git a/src/endpoints/tsg.css b/src/endpoints/tsg.css index ed60750..e5d4ba8 100644 --- a/src/endpoints/tsg.css +++ b/src/endpoints/tsg.css @@ -12,6 +12,11 @@ h1 { color: #009682; text-align: center; } +label { + display: block; + font-weight: bold; + margin-top: 4mm; +} textarea { display: block; width: 100%; diff --git a/src/endpoints/tsg.rs b/src/endpoints/tsg.rs index 657fc60..21da962 100644 --- a/src/endpoints/tsg.rs +++ b/src/endpoints/tsg.rs @@ -27,8 +27,11 @@ pub async fn get() -> Markup { " eingeben." } - textarea name="global" placeholder="Global.json" {} - textarea name="month" placeholder="Month.json" {} + label for="i-global" { "Global.json" } + textarea #i-global name="global" placeholder="{}" {} + + label for="i-month" { "Month.json" } + textarea #i-month name="month" placeholder="{}" {} button #submit type="button" { "Arbeitszeitdokumentation generieren" }