implemented profile

This commit is contained in:
2023-10-30 19:27:44 +01:00
parent 0ed8ab9137
commit 298e8e6cd1
8 changed files with 57 additions and 226 deletions

View File

@ -4,19 +4,19 @@
<h1>Profil</h1>
<div class="row">
<div class="col-3">
<img src="<?= $user['photo']?:'https://pictshare.net/1ch3e5.png' ?>/300x170/forcesize" class="card-img-top" alt="<?= escape($user['name']); ?>'s profile Picture">
<img src="<?= $user['photo']?:'https://pictshare.net/pj7vzx.jpg' ?>/300x300/forcesize" class="card-img-top" alt="<?= escape($user['name']); ?>'s profile Picture">
</div>
<div class="col-9">
<h3 class="card-title"><?= escape($user['name']); ?> <?= escape($user['surname']); ?></h3>
<div>
<?php if($user['birthday']): ?><p>Alter: <?= date_diff(date_create($user['birthday']), date_create('now'))->y ?></p> <?php endif; ?>
<?php if($user['email']): ?><p>Rasse: <?= escape($user['email']); ?></p> <?php endif; ?>
<?php if($user['club']): ?><p>Zuchtname: <?= escape($user['club']); ?></p> <?php endif; ?>
<h3 class="card-title"><?= escape($user['firstname'].' '.$user['lastname']); ?></h3>
<div>
<?php if($user['birthday']): ?><p>Geburstag: <?= $user['birthday'].' ('.date_diff(date_create($user['birthday']), date_create('now'))->y.')' ?></p> <?php endif; ?>
<?php if($user['email']): ?><p>Email: <?= escape($user['email']); ?></p> <?php endif; ?>
<?php if($user['club']): ?><p>Verein: <?= escape($user['club']); ?></p> <?php endif; ?>
</div>
<div class="d-flex justify-content-end">
<button type="button" class="btn btn-secondary" hx-get="/user/edit/<?= $userid; ?>" hx-target="#main">
<button type="button" class="btn btn-secondary" hx-get="/profile/edit" hx-target="#main">
<i class="fas fa-edit"></i>
</button>
</div>