-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·80 lines (59 loc) · 2.82 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
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<!-- PAGE INFO -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevJobs</title>
<!-- STYLES -->
<link rel="stylesheet" href="Front-end/css/estilo.css" />
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Poppins:wght@400;500;700&display=swap"
rel="stylesheet" />
</head>
<body>
<header id = "header">
<nav class = "container">
<a class = "logo" href = "#">Dev<span>Jobs</span></a>
</nav>
</header>
<main>
<div class = "loginBox">
<section class = "section">
<div class = "container grid">
<form action = "Back-end/Controller/verificarLogin.php" method = "POST" autocomplete = "off">
<div class = "info">
<img src = "Front-end/images/Logo.png" alt = "Pessoa segurando cadeado">
<h1>Login</h1>
<br>
</div>
<!--Implementacao do campo do CPF-->
<div class = "userBox">
<label for = "cpf">CPF:</label>
<br>
<input type = "text" name = "cpf" pattern = "\d{3}\.?\d{3}\.?\d{3}-?\d{2}" oninvalid = "this.setCustomValidity('O CPF deve ser válido!')" oninput = "this.setCustomValidity('')">
<br>
</div>
<!--Implementacao do campo Senha-->
<div class = "userBox">
<br>
<label for = "senha">Senha:</label>
<input type = "password" name = "senha">
</div>
<div class = "buttons">
<br>
<button class = "button" type = "submit">Logar</button>
<!--Botao de Registro-->
<p>Não tem uma conta?</p>
<a href = "Front-end/views/funcionarioOrContratante.html" class = "button" type = "button">Cadastrar-se</a>
</div>
</form>
</div>
</section>
</div>
<img src="Front-end/images/image-background-green.jpeg">
</main>
</body>
</html>