-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcabecalho.php
More file actions
60 lines (58 loc) · 2.5 KB
/
cabecalho.php
File metadata and controls
60 lines (58 loc) · 2.5 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Agendamento de Salas - UDF</title>
<link rel="icon" href="favicon.ico">
<!-- Bootstrap core CSS -->
<link href="view/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Bootstrap theme -->
<link href="view/css/bootstrap-theme.min.css" rel="stylesheet" type="text/css">
<!-- Bootstrap custom -->
<link href="view/css/boobootstrap-custom.css" rel="stylesheet" type="text/css">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="view/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<script type="text/javascript" src="view/js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="view/js/bootstrap.min.js"></script>
</head>
<!-- Modal -->
<div class="modal fade" id="modalLoading" tabindex="-1" role="dialog" aria-labelledby="modalLoadingLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="modalLoadingLabel">Carregando</h4>
</div>
<div class="modal-body">
Aguardo enquanto as informações são geradas.
</div>
<div class="modal-footer"></div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
<!-- Modal -->
<div class="modal fade" id="modalError" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header modal-header-danger">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Erro</h4>
</div>
<div class="modal-body">
Por favor tente novamente mais tarde.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Fechar</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->