You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.2 KiB
74 lines
2.2 KiB
<!-- Content Wrapper. Contains page content -->
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>
|
|
Profil
|
|
<small>utilisateur</small>
|
|
</h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="#"><i class="fa fa-dashboard"></i> Accueil</a></li>
|
|
<li class="active">Profil</li>
|
|
</ol>
|
|
</section>
|
|
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
<!-- Small boxes (Stat box) -->
|
|
<div class="row">
|
|
<div class="col-md-12 col-xs-12">
|
|
|
|
<div class="box">
|
|
<div class="box-header">
|
|
<h3 class="box-title">Profil XXX</h3>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<div class="box-body">
|
|
<table class="table table-bordered table-condensed table-hovered">
|
|
<tr>
|
|
<th>Nom d'utilisateur</th>
|
|
<td><?php echo $user_data['username']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Email</th>
|
|
<td><?php echo $user_data['email']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Nom</th>
|
|
<td><?php echo $user_data['firstname']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Prénom</th>
|
|
<td><?php echo $user_data['lastname']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Genre</th>
|
|
<td><?php echo ($user_data['gender'] == 1) ? 'Homme' : 'Femme'; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Téléphone</th>
|
|
<td><?php echo $user_data['phone']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Roles</th>
|
|
<td><span class="label label-info"><?php echo $user_group['group_name']; ?></span></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Point de vente</th>
|
|
<td><span ><?php echo $store_name->name; ?></span></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
</div>
|
|
<!-- /.box -->
|
|
</div>
|
|
<!-- col-md-12 -->
|
|
</div>
|
|
<!-- /.row -->
|
|
|
|
|
|
</section>
|
|
<!-- /.content -->
|
|
</div>
|
|
<!-- /.content-wrapper -->
|