-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface_back_roles.php
More file actions
39 lines (34 loc) · 1.42 KB
/
interface_back_roles.php
File metadata and controls
39 lines (34 loc) · 1.42 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Index • Fruity Motion</title>
<meta charset="utf-8">
<meta value="notranslate" name="google">
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" name="viewport">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/grid.css">
</head>
<body>
<header id="header">
<div class="grid-100 tablet-grid-100">
<span class="logo"><span class="vert">Motion</span>Book</span>
<nav class="topnav">
<a href="#">Interface d'administration</a>
</nav>
</div>
<div class="submenu">
<div class="grid-100 tablet-grid-100 grid-parent">
<div class="grid-10 tablet-grid-10 grid-parent">
<a href="interface_back.php"><span class="icon-users"></span><span>Users</span></a>
</div>
<div class="grid-10 tablet-grid-10 grid-parent">
<a href="interface_back_roles.php" class="active"><span class="icon-star"></span><span>Roles</span></a>
</div>
<div class="grid-10 tablet-grid-10 grid-parent">
<a href="interface_back_posts.php"><span class="icon-notebook"></span><span>Posts</span></a>
</div>
</div>
</div>
</header>
</body>
</html>