-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadm.html
107 lines (91 loc) · 3.69 KB
/
adm.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gamefication - Recode Jr</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<font class="navbar-brand">Gamefication</font>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Informações <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Gerais</a></li>
<li><a href="#">Classes</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Logout</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- Container -->
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6" style="margin-top: 25px;">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title"><center>Menu</center></h3>
</div>
<div class="panel-body">
<!-- interior ao menu -->
<table class="table table-bordered">
<thead>
<tr>
<th>Tarefa</th>
<th>Pontos</th>
<th><!-- Vazio --></th>
</tr>
</thead>
<tbody>
<tr>
<th>Tarefa Nome</th>
<th><!-- Vazio --></th>
<th>
<center>
<button type="button" class="btn btn-default">Edit</button>
<button type="button" class="btn btn-default">Remove</button>
</center>
</th>
</tr>
<tr>
<td><!-- Vazio --></td>
<td><!-- Vazio --></td>
<td><!-- Vazio --></td>
</tr>
</tbody>
</table>
<div align="right">
<button type="button" class="btn btn-default">Adicionar Tarefa</button>
</div>
<!-- interior ao menu -->
</div>
</div>
</div>
<div class="col-md-3"></div>
</div>
<!-- Container -->
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>