-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkform.html
45 lines (45 loc) · 2 KB
/
workform.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
<!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.0">
<title>Game Mania - Trabalhe conosco</title>
<link rel="stylesheet" type="text/css" href="css/login.css">
<link rel="shortcut icon" type="imagex/png" href="./img/logo.ico">
</head>
<body>
<section class="background flex_center_center">
<div class="flex_between_center">
<div>
<a href="index.html"><img class="logo" src="img/GAME MANIA_white.png" alt="Logo do site Game Mania"></a>
</div>
</div>
<form action="#" method="post">
<label for="name">Nome:</label>
<input type="text" id="name" name="name" maxlength="15" required autocomplete>
<br><br>
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" maxlength="40" placeholder="[email protected]" required autocomplete>
<br><br>
<label for="tel">Telefone:</label>
<input type="tel" id="tel" name="tel" maxlength="11" required autocomplete>
<br><br>
<label for="curriculo">Currículo:</label>
<input type="file" id="curriculo" name="curriculo" required autocomplete>
<br><br>
<label for="name">Nome:</label>
<input type="nome" id="nome" name="nome" maxlength="25" required autocomplete>
<br><br>
<div>
<label for="mensagem">Mensagem:<br /></label>
<textarea id="mensagem" name="mensagem" rows="8" cols="40" maxlength="200" minlength="2" placeholder="Digite aqui sua mensagem" required autocomplete></textarea>
<br><br>
</div>
<div class="flex_center_center">
<a><input type="submit" id="btn-enviar" name="btn-enviar" required value="Enviar" class="btn"></a>
</div>
</form>
</section>
</body>
</html>