-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookmarks.php
121 lines (113 loc) · 2.71 KB
/
bookmarks.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="fr">
<head>
<?php require('head.php'); ?>
<link rel="stylesheet" href="css/bookmarks.css" type="text/css" />
<title>Organizz - Bookmarks tmp</title>
</head>
<body>
<?php require('header.php'); ?>
<div id="middle">
<section id="latGauche" class="lateraux">
<div id="BlocCategories" class="blocs blocsLeft">
<h2>
CATEGORIES
</h2>
<nav id="Categories">
</nav>
</div>
<div id="BlocSsCategories" class="blocs blocsLeft">
<!--h2>
SOUS-CATEGORIES
</h2-->
<h2>
DOMAINES-
</h2>
<nav id="Domaines">
</nav>
</div>
<div id="BlocEtiquettes" class="blocs blocsLeft">
<h2>
ETIQUETTES
</h2>
<nav id="Etiquettes">
</nav>
</div>
</section>
<section id="Contenu">
<article>
<p> </p>
</article>
</section>
<aside id="latDroite" class="lateraux">
<div id="BlocInfos" class="blocs blocsRight">
<h2>
INFORMATIONS
</h2>
<nav id="Infos">
<span id="getPays">Pays</label><br />
<span id="getLangue">Langue</label><br />
<span id="getLastVisit">Last Visite</label> ||
<span id="getNbrVisit">nbr Visites</label><br />
<label for="getCommentaire">Commentaire</label>
<input type="text" name="getCommentaire" id="getCommentaire" /><br />
</nav>
</div>
<div id="BlocConfigs" class="blocs blocsRight">
<h2>
CONFIGURATIONS
</h2>
<nav id="Configs">
<label for="AVoir">A Voir</label>
<select name="AVoir">
<option value="0">
-
</option>
<option value="1">
Très vite
</option>
<option value="2">
Bientôt
</option>
<option value="3">
Plus Tard
</option>
<option value="4">
Ne Pas Oublier
</option>
</select>
<label for="Cyclique">Cyclique</label>
<select name="Cyclique">
<option value="0">
-
</option>
<option value="1">
Heures
</option>
<option value="2">
Jours
</option>
<option value="3">
Semaines
</option>
<option value="4">
Mois
</option>
</select>
<label for="ADate">Quand ?</label>
<input name="ADate" id="ADate" type="date"/>
<label for="message">Message</label>
<input type="text" name="message" id="message" /><br />
</nav>
</div>
</aside>
</div>
<?php require('footer.php'); ?>
</body>
<script type="text/javascript" src="../jquery/jquery.js"></script><!--2.1.1-->
<!--script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js" /-->
<script type="text/javascript" src="js/bookmarks.js"></script>
</html>