div TODOS erstellt

This commit is contained in:
Troy Grunt
2026-02-13 19:45:27 +01:00
parent 4b109308c9
commit b9d662b8b9
2 changed files with 8 additions and 2 deletions

View File

@@ -221,7 +221,7 @@ exit;
EDIT IDENTITY EDIT IDENTITY
───────────────────────────── */ ───────────────────────────── */
if ($action === 'identity_edit') { if ($action === 'identity_edit') {
//TODO je nach typ des feldes soll auch das datenfeld getauscht werden, einzeilit input mehrzeilig textarea usw
$id = (int)($_GET['id'] ?? 0); $id = (int)($_GET['id'] ?? 0);
$identity = $sql->single( $identity = $sql->single(
@@ -409,7 +409,7 @@ if ($action === 'uuid_create') {
EDIT UUID EDIT UUID
───────────────────────────── */ ───────────────────────────── */
if ($action === 'uuid_edit') { if ($action === 'uuid_edit') {
//TODO es fehlt die auswahl welche felder sichtbar sein sollen.
$uuid = $_GET['uuid'] ?? ''; $uuid = $_GET['uuid'] ?? '';
$token = $sql->single( $token = $sql->single(
@@ -562,3 +562,6 @@ $identities = $sql->get("SELECT * FROM identities ORDER BY id DESC");
<p><a href="logout.php">Logout</a></p> <p><a href="logout.php">Logout</a></p>
</body> </body>
</html> </html>
<?php
//TODO einheitliches dunkles design
?>

View File

@@ -204,6 +204,9 @@ function label(string $key): string {
<footer> <footer>
Zugriff über sicheren Link Zugriff über sicheren Link
<?php
//TODO ordentlichen footer
?>
</footer> </footer>
</div> </div>
</body> </body>