diff --git a/server/content/planning.php b/server/content/planning.php index 657f3db..0b479cc 100644 --- a/server/content/planning.php +++ b/server/content/planning.php @@ -6,7 +6,8 @@ // Title $content = '

Saison-Planung

'; - $content .= '

Hinweis: Diese Seite kannst nur Du sehen.
Wenn Du Deine Saison-Planung teilen möchtest, klicke hier

'; + $content .= '

Hinweis: Diese Seite kannst nur Du sehen.
Wenn Du Deine Saison-Planung teilen möchtest, klicke hier

'; + $content .= $tpl->load('button', [' bearbeiten', LINK_PRE . 'planning_edit']); $content .= $tpl->load('select', ['html-id' => 'select-year', 'placeholder' => 'Jahr', 'css-class' => 'mt-3 mb-0']); $sp['output'] .= $tpl->load('card', [$content, 'css-class' => 'show-loggedin']); diff --git a/server/content/planning_edit.php b/server/content/planning_edit.php index 85a23df..ef7d037 100644 --- a/server/content/planning_edit.php +++ b/server/content/planning_edit.php @@ -1,19 +1,21 @@ load('error', ['404', 'Seite existiert noch nicht']); $content .= '

'; - $content .= 'Die gesuchte Seite ist leider noch nicht verfügbar.
'; - $content .= 'Wir arbeiten daran, sie schnellstmöglich zur Verfügung zu stellen.
'; - $content .= 'Wie wäre es mit der Homepage?'; + $content .= 'Du kannst die Saison-Planung momentan leider noch nicht in der App bearbeiten.
'; + $content .= 'Bis diese Funktion implementiert wurde, erstelle Deine Saison-Planung bitte auf unserer Website.
'; + $content .= 'Deine Saison-Planung wird dann automatisch synchronisiert und ist dann auch in dieser App verfügbar.
'; + $content .= 'Wir arbeiten daran, dass Du Deine Saison-Planung bald auch in der App bearbeiten kannst.
'; $content .= '

'; + $content .= $tpl->load('button', ['Zur Website', 'https://regatten.net/' . BOATCLASS, 'css-class' => 'mb-3']); $content .= $tpl->load('button', ['Zur Startseite', LINK_PRE . 'index', 'css-class' => 'mb-3']); $content .= $tpl->load('button', ['Kontakt', LINK_PRE . 'contact']); - + $sp['output'] = $tpl->load('card', [$content, 'css-class' => 'text-center pt-3']); - -?> \ No newline at end of file + +?>