-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML (Vagas.html)
67 lines (58 loc) · 2.65 KB
/
HTML (Vagas.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<link rel="stylesheet" href="tiaw.2.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/records.css">
<link rel="stylesheet" href="css/modal.css">
<script src="java.3.js" defer></script>
<title>Nova vaga</title>
</head>
<body>
<nav class="navbar .navbar-nav .nav-item .nav-link .material-icons">
<!--Quando eu coloco o header ele fica grande e as letras ficam umas em baixo das outras, talvez se eu colocar um p-->
<div class="container px-lg-5">
<a class="navbar-brand" img scr="#"></a>
<a class="nav-link active" aria-current="page" href="http://127.0.0.1:5501/.vscode/TIAW.html">Perfil</a></li> <!--PAGINA ATIVA-->
<a class="nav-link" href="http://127.0.0.1:5501/.vscode/TIAW.html">Pagina inicial</a></li>
<a class="nav-link" href="https://www.youtube.com/watch?v=o0LaNit1ts8">Chat</a></li>
<a class="nav-link" href="#!">Forúm</a></li></a>
</div>
</nav>
<main>
<button type="button" class="button blue mobile" id="cadastrarCliente">Cadastrar Vaga</button>
<table id="tableClient" class="records">
<thead>
<tr>
<th>Sobre a vaga</th>
<th>E-mail</th>
<th>Requisitos</th>
<th>Número de vagas</th>
<th>Ação</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="modal" id="modal">
<div class="modal-content">
<header class="modal-header">
<h2>Nova Vaga</h2>
<span class="modal-close" id="modalClose">✖</span>
</header>
<form id="form" class="modal-form">
<input type="text" id="nome" data-index="new" class="modal-field" placeholder="sobre a vaga"
required>
<input type="email" id="email" class="modal-field" placeholder="e-mail" required>
<input type="text" id="celular" class="modal-field" placeholder="requisitos" required>
<input type="number" id="cidade" class="modal-field" placeholder="número de vagas" required>
</form>
<footer class="modal-footer">
<button id="salvar" class="button green">Salvar</button>
<button id="cancelar" class="button blue">Cancelar</button>
</footer>
</div>
</div>
</main>
</body>
</html>