File indexing completed on 2024-06-23 05:51:19

0001 <?php 
0002 /**
0003  *  ocs-webserver
0004  *
0005  *  Copyright 2016 by pling GmbH.
0006  *
0007  *    This file is part of ocs-webserver.
0008  *
0009  *    This program is free software: you can redistribute it and/or modify
0010  *    it under the terms of the GNU Affero General Public License as
0011  *    published by the Free Software Foundation, either version 3 of the
0012  *    License, or (at your option) any later version.
0013  *
0014  *    This program is distributed in the hope that it will be useful,
0015  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
0016  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0017  *    GNU Affero General Public License for more details.
0018  *
0019  *    You should have received a copy of the GNU Affero General Public License
0020  *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
0021  **/
0022 ?>
0023 <style>
0024     td {
0025         border: 1px solid #dedede;
0026         padding: 2px 3px;
0027     }
0028 
0029     td.label {
0030         width: 150px;
0031         font-weight: bold;
0032     }
0033 
0034     td.value {
0035         width: 300px;
0036     }
0037 </style>
0038 <h3>Alle Details zu User <u><?= $this->member->username; ?></u></h3>
0039 <table>
0040     <tr>
0041         <td class="label">Username</td>
0042         <td class="value"><?= $this->member->username; ?></td>
0043     </tr>
0044 
0045     <tr>
0046         <td class="label">Name</td>
0047         <td class="value"><?= $this->member->lastname; ?></td>
0048     </tr>
0049 
0050     <tr>
0051         <td class="label">Vorname</td>
0052         <td class="value"><?= $this->member->firstname; ?></td>
0053     </tr>
0054 
0055     <tr>
0056         <td class="label">Mail</td>
0057         <td class="value"><?= $this->member->mail; ?></td>
0058     </tr>
0059 
0060     <tr>
0061         <td class="label">Biography</td>
0062         <td class="value"><?= stripslashes($this->member->biography); ?></td>
0063     </tr>
0064 </table>
0065 <br/><br/>
0066 <a href="/backend/member" class="ui-state-default ui-corner-all button_normal memberOverview">Member overview</a>