This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
ModuleWeb/SRC/resources/views/admin.blade.php

65 lines
1.4 KiB
PHP
Raw Normal View History

2015-02-12 19:00:23 +00:00
@extends('app')
@section('content')
<br>
<center><h1>Bienvenue dans l'espace d'administration!</h1>
<br>
<div class="row">
<div class="col-md-8">
<table class="table table-hover">
<thead>
<tr>
<td>Nom</td>
<td>Mail</td>
<td>Lieu</td>
<td>Action</td>
</tr>
</thead>
<tbody>
<tr>
<td>Quentin Rouland</td>
<td>quentin.rouland@free.fr</td>
<td>Toulouse</td>
<td>-- Action --</td>
</tr>
<tr>
<td>Quentin Rouland</td>
<td>quentin.rouland@free.fr</td>
<td>Toulouse</td>
<td>-- Action --</td>
</tr>
<tr>
<td>Quentin Rouland</td>
<td>quentin.rouland@free.fr</td>
<td>Toulouse</td>
<td>-- Action --</td>
</tr>
<tr>
<td>Quentin Rouland</td>
<td>quentin.rouland@free.fr</td>
<td>Toulouse</td>
<td>-- Action --</td>
</tr>
<tr>
<td>Quentin Rouland</td>
<td>quentin.rouland@free.fr</td>
<td>Toulouse</td>
<td>-- Action --</td>
</tr>
<tr>
<td>Quentin Rouland</td>
<td>quentin.rouland@free.fr</td>
<td>Toulouse</td>
<td>-- Action --</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-4">.col-md-4</div>
</div>
@endsection