-
Notifications
You must be signed in to change notification settings - Fork 1
/
message.php
68 lines (64 loc) · 2.61 KB
/
message.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
include_once("./includes.php");
entete("Message privé");
verif_connexion();
?>
<div class="container">
<ul class="breadcrumb">
<li>
<a href="./index.php">Home</a> <span class="divider">/</span>
<a href="./categorie.php">Musique</a> <span class="divider">/</span>
<a href="./forum.php">Lyrics</a> <span class="divider">/</span>
<a href="./topic.php">Topic Lyrics</a> <span class="divider">/</span>
<a href="./message.php">You See</a>
</li>
</ul>
<div class="row">
<div class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Dernier fichier upload</li>
<li><a href="./audio/SleepAway.mp3">2 see</a><span><h6>06/06/12</h6></span></li>
<li class="nav-header">Uploader un Fichier</li>
<li>
<div class="btn-group">
<a href="./upload.php" class="btn btn-info">Upload</a>
</div>
</li>
</ul>
</div>
</div>
<div class="span9">
<form class="well">
<legend><a href="./message.php">> You see</a></legend>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th colspan="2"><h6>Mercredi 6 Juin 2012 <a class="btn btn-small pull-right" href="./editmessage.php"><i class="icon-edit"></i></a></h6></th>
</tr>
</thead>
<tbody>
<tr>
<td>Valou <br/> image </td>
<td>Salut !</td>
</tr>
</tbody>
</table>>
</form>
<div class="pagination">
<ul>
<li><a href="#"><i class="icon-chevron-left"></i></a></li>
<li class="active">
<a href="#">1</a>
</li>
<li><a href="#"><i class="icon-chevron-right"></i></a></li>
</ul>
</div>
<div class="btn-group form-actions">
<a href="./sendmessage.php" class="btn btn-success">Répondre <i class="icon-pencil icon-white"></i></a>
</div>
</div>
</div>
<?php
pied();
?>