-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock in Rio</title>
<meta name="theme-color" content="#8257E5">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/landing-page.css">
<link href="https://fonts.googleapis.com/css2?family=Archivo:wght@400;700&family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<div class="logo-container">
<img src="images/logo_rio.png" alt="Rock In Rio">
</div>
<div class="form-login">
<form method="POST" action="php/login.php">
<fieldset>
<legend>Login</legend>
<div id="tipo-funcionario">
<input type="radio" id="bilheteria" name="funcionario" value="bilheteria" checked>
<label for="bilheteria">Bilheteria</label>
<input type="radio" id="seguranca" name="funcionario" value="seguranca">
<label for="seguranca" >Segurança</label>
<input type="radio" id="relatorio" name="funcionario" value="relatorio">
<label for="relatorio">Relatório</label>
</div>
<p>Credencial: <input type="text" name="user" id = "user" maxlength="11"></p>
<button type="submit">Entrar</button>
</fieldset>
</form>
</div>
<footer style="margin-top: 3rem; margin-bottom: 3rem; text-align: center;" > RockInRio © Todos os direitos reservados.</footer>
</div>
</body>
</html>