-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1000 Bytes
/
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
<!DOCTYPE html PUBLIC>
<html>
<head>
<meta http-equiv="Content-Type" content="charset=UTF-8">
<title>Login</title>
<link rel="stylesheet" type="text/css" href="css/login.css">
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/jquery.maskedinput.js"></script>
<script type="text/javascript" src="js/validacao.js"></script>
</head>
<body>
<header>
</header>
<div class="container">
<form>
<div class="form-group">
<div class="org">
<label for="usuarioLogin" class="rotulo">
<h2>Usuário:</h2>
</label>
<input type="text" name="usuarioLogin" class="tamanho"/>
</div>
<div class="org">
<label for="senhaLogin" class="rotulo">
<h2>Senha:</h2>
</label>
<input type="password" class="tamanho" name="senhaLogin" />
</div>
<input name="botao" class="botao" type="button" onClick="window.open('pagina_inicial.html')" value="Entrar">
</form>
</body>
</html>