footer für alle Seiten und new Modal

This commit is contained in:
2025-07-10 11:42:30 +02:00
parent 3964f90a30
commit a2b66de0be
13 changed files with 95 additions and 11 deletions

View File

@@ -3,6 +3,13 @@
?>
<article>
<div id="confirmModal" class="modal-overlay">
<div class="modal">
<p>Sind Sie sicher, dass Sie Ihren Account löschen möchten?</p>
<button id="btnCancel" class="button button-secondary">Abbrechen</button>
<button id="btnConfirm" class="button button-danger">Ja, Account löschen</button>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12">
@@ -32,7 +39,7 @@
</form>
</li>
<li>
<form method="post">
<form method="post" id="deleteForm">
<input type="hidden" name="controller" value="user">
<input type="hidden" name="do" value="deleteAccount">
<button type="submit" class="btn btn-logout">Meinen Account löschen</button>
@@ -52,5 +59,4 @@
</div>
</article>
<?php include dirname(__DIR__).'/footer.phtml'; ?>

View File

@@ -5,7 +5,7 @@ include dirname(__DIR__).'/header.phtml';
<div class="container">
<div class="row">
<div class="col-12">
<h1>Change Account Info</h1>
<h1>Meine Daten ändern</h1>
<form method="post" class="form-grid form-user">
<?php foreach ($changeUserLabels as $key => $label): ?>
@@ -31,4 +31,6 @@ include dirname(__DIR__).'/header.phtml';
</form>
</div>
</div>
</div>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>

View File

@@ -12,3 +12,5 @@
</div>
</div>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>

View File

@@ -22,3 +22,5 @@
</div>
</div>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>

View File

@@ -31,4 +31,6 @@
</form>
</div>
</div>
</div>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>

View File

@@ -9,3 +9,5 @@
<?php
include dirname(__DIR__).'/footer.phtml';
?>

View File

@@ -35,3 +35,5 @@
</div>
</div>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>