login.html
1.79 KB
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
<!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" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Teste</title>
<link rel="icon" href="/static/favicon.ico" />
<!-- Bootstrap -->
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap-theme.min.css"> <!-- optional -->
<link rel="stylesheet" href="/static/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="/static/css/test.css">
<script src="/static/js/jquery.min.js"></script>
<script src="/static/bootstrap/js/bootstrap.min.js"></script>
</head>
<!-- ===================================================================== -->
<body>
<div class="container-fluid">
<div class="well drop-shadow">
<div class="row voffset">
<div class="col-xs-4">
<img src="/static/logo_horizontal.png" class="img-responsive" />
</div>
<div class="col-xs-8">
<h4>Identificação:</h4>
<form method="post" action="/login" class="form-signin">
<div class="form-group">
<input type="text" name="uid" class="form-control" placeholder="Número" required autofocus>
<input type="password" name="pw" class="form-control" placeholder="Password" required>
</div>
<button class="btn btn-primary" type="submit">
<i class="fa fa-sign-in" aria-hidden="true"></i> Entrar
</button>
</form>
</div>
</div>
</div>
</div> <!-- container -->
</body>
</html>
</body>