-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
153 lines (131 loc) · 6.27 KB
/
index.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- FONTES -->
<!-- MEU ESTILO -->
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/color1.css" id="color">
<title>Cadastro de Estagiários</title>
</head>
<body class="bg-light">
<!-- Menu -->
<ul class="nav nav-tabs nav-fill pt-5 bg-dark" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Estagiários</a>
</li>
<li class="nav-item">
<a class="nav-link" id="profile-tab" data-toggle="tab" href="#cadastro" role="tab" aria-controls="profile" aria-selected="false">Cadastrar</a>
</li>
<li class="nav-item">
<a class="nav-link" id="profile-tab" data-toggle="tab" href="#config" role="tab" aria-controls="profile" aria-selected="false">Configurações</a>
</li>
</ul>
<!-- Fim Menu -->
<!-- Conteúdo das tabs -->
<div class="tab-content">
<div class="tab-pane active" id="home" role="tabpanel" aria-labelledby="home-tab">
<div class="container py-5 justify-content-center">
<input type="text" class="col-10" name="pesquisaPorNome" id="buscaNome" value="">
<button class="btn btn-outline-primary col-1" onclick="displayInterns()">Pesquisar</button>
<table class="table table-striped table-dark table-hover table-responsive-md">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Nome</th>
<th scope="col">E-Mail</th>
<th scope="col">Fone</th>
<th scope="col">Data-Nasc</th>
<th scope="col">Cidade</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody id="consulta">
</tbody>
</table>
</div>
</div>
<!-- Janela de edição -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content bg-light text-white">
<div class="modal-header border-success">
<h5 class="modal-title" id="exampleModalLabel">Editar</h5>
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="editar">
teste
</div>
</div>
</div>
</div>
<!-- Cadastro de Estagiários -->
<div class="tab-pane" id="cadastro" role="tabpanel" aria-labelledby="cadastro-tab">
<div class="container py-5">
<form class="needs-validation" onsubmit="addIntern()">
<div class="form-group">
<label for="nome">Nome:</label>
<!-- input #nome -->
<input type="text" class="form-control" id="nome" placeholder="Nome completo..." required>
</div>
<!-- Campo de email e Telefone -->
<div class="form-row flex-wrap flex-md-nowrap">
<div class="form-group col-md-8">
<label for="email">Endereço de Email:</label>
<!-- input #email -->
<input type="email" class="form-control" id="email" aria-describedby="emailHelp" placeholder="[email protected]" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" title="Digite um email válido." required>
<small id="emailHelp" class="form-text text-muted">Nunca vamos compartilhar seu email com ninguém</small>
</div>
<div class="form-group col-md-4">
<label for="tel">Telefone</label>
<!-- Ferramenta top: https://www.regextester.com -->
<!-- input #tel -->
<input type="text" class="form-control" id="tel" placeholder="(099) 99999-9999" pattern="\(?[0-9]{2,3}\)?-?[0-9]{4}-?[0-9]{4,5}" title="Digite um número válido.">
</div>
</div>
<div class="form-row flex-wrap flex-md-nowrap">
<div class="form-group col-md-4 col-lg-2">
<label for="nasc">Data de nascimento:</label>
<input type="date" class="form-control" id="nasc" placeholder="data de nasc">
</div>
<div class="form-group col-md-8 col-lg-10">
<label for="cidade">Cidade:</label>
<input type="text" class="form-control" id="cidade" placeholder="Cidade">
</div>
</div>
<button type="submit" class="btn btn-outline-primary">Cadastrar</button>
</form>
<!-- Fim do formulário -->
</div>
</div>
<!-- Tab de config -->
<div class="tab-pane" id="config" role="tabpanel" aria-labelledby="home-tab">
<div class="container py-5 justify-content-center">
<div class="row justify-content-center">
<h3>Selecione Estilo de Cor</h3>
</div>
<!-- Config de cores -->
<div class="row">
<button class='btn btn-outline-primary col' onclick="setColor(1)">Original</button>
<button class='btn btn-outline-primary col' onclick="setColor(2)">Contato Seguro</button>
<button class='btn btn-outline-primary col' onclick="setColor(3)">Maçã do Amor</button>
<button class='btn btn-outline-primary col' onclick="setColor(4)">Marshmallow</button>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<!-- Meu Javascript -->
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>