-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
137 lines (112 loc) · 2.55 KB
/
index.php
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?php
session_start();
include("conexao/conexao.php");
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="pragma" content="no-cache">
<title>Login</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="js/ajaxjquery.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<style>
body{
margin: 0;
background-color: #aadddd;
}
h3{
text-align: center;
margin-top: -10px;
/*margin-left: -50px;*/
margin-bottom: 20px;
padding: 5px;
width: 100%;
background-color: #397ab7;
color: #fff;
box-shadow: 0px 1px 2px black;
border-radius: 5px;
}
.box{
border-radius: 5px;
background-color: #fff;
position: absolute;
box-shadow: 0px 3px 13px black;
padding: 50px;
width: 600px;
height: 400px;
color: black;
top: 50%;
margin-top: -200px;
left: 50%;
margin-left: -300px;
}
.box h4{
color: black;
text-align: center;
}
.box input{
background-color: #fff;
}
#enviar button{
text-align: left;
margin-top: 20px;
}
#enviar span{
margin-left: 80%;
}
#cadastrar{
width: 100%;
/*position: absolute;*/
margin-top: 20px;
margin-bottom: 20px;
text-decoration: none;
text-align: left;
background-color: #ddd;
}
#cadastrar:hover{
background-color: #ccc;
}
</style>
</head>
<body onload="focus();">
<script>
function validacao(){
if(login.nome.value == ""){
alert("Insira seu nome!");
login.nome.focus();
return false;
}else if(login.senha.value==""){
alert("Insira sua senha!");
login.senha.focus();
}else{
login.submit();
}
}
function focus(){
login.nome.focus();
}
</script>
<div class="container-fluid" >
<div class="row-fluid">
<div class="box">
<h3>Login</h3>
<form action="validacao.php" name="login" method="POST">
<p>Nome: </p>
<input type="text" name="nome" class="form-control" minlength="8">
<br>
<p>Senha: </p>
<input type="password" class="form-control" name="senha" maxlength="8" minlength="6">
<div id="enviar">
<button type="button" class="btn btn-primary form-control" value="Entrar" onclick="validacao();">Entrar <span class="glyphicon glyphicon-log-in" aria-hidden="true"></span></button>
</div>
<a href="login/cadastrar_rt.php" id="cadastrar" class="btn btn">Cadastrar RT</a>
</form>
</div>
</div>
</div>
<script src="js/efeitos.js"></script>
<script src="js/jquery-3.2.1.min.js"></script>
</body>
</html>