forked from alemaodacapa/SisPanel_Caixa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.php
186 lines (174 loc) · 7.06 KB
/
registro.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php
session_start();
$senha_padrao = "admincaixa";
// Redefinir a sessão se o usuário não fornecer a senha correta
if (isset($_POST['senha']) && $_POST['senha'] === $senha_padrao) {
$_SESSION['acesso_permitido'] = true;
} else {
$_SESSION['acesso_permitido'] = false;
}
// Se o acesso não for permitido, exibir o formulário de senha
if (!isset($_SESSION['acesso_permitido']) || $_SESSION['acesso_permitido'] !== true) {
echo '<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SisPainel Consultório - Login</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container" style="margin-top: 50px;">
<div class="row justify-content-center">
<div class="col-md-4">
<h3 class="text-center">Acesso Restrito</h3>
<form method="POST" action="">
<div class="form-group">
<label for="senha">Senha: admincaixa</label>
<input type="password" id="senha" name="senha" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary btn-block">Acessar</button>
</form>
</div>
</div>
</div>
</body>
</html>';
exit();
}
include 'conexao.php';
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<link href="/img/att.jpg" rel="icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SisPainel Admin - Operador</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
margin: 0;
padding: 0;
}
.container {
margin-top: 20px;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.header h1 {
font-size: 2em;
font-weight: bold;
color: #007bff;
}
.info-box {
background-color: #ffffff;
padding: 15px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.btn-large {
font-size: 1.5em;
padding: 10px;
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>SisPainel Consultório - Operador</h1>
</div>
<div class="info-box">
<h3>Cadastro de Usuário</h3>
<form id="formCadastro">
<div class="form-group">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" class="form-control" required>
</div>
<div class="form-group radio-group">
<label>Tipo de Senha:</label><br>
<input type="radio" id="normal" name="tipo_senha" value="normal" checked>
<label for="normal">Normal</label><br>
<input type="radio" id="preferencial" name="tipo_senha" value="preferencial">
<label for="preferencial">Preferencial</label>
</div>
<div class="form-group">
<label for="senha">Senha:</label>
<input type="text" id="senha" name="senha" class="form-control" readonly>
</div>
<div class="form-group">
<button type="button" class="btn btn-primary btn-large" onclick="gerarSenhaAleatoria()">Gerar Senha</button>
</div>
<div class="form-row">
<div class="col-md-6 mb-3">
<button type="button" class="btn btn-success btn-large" onclick="cadastrarCliente()">Cadastrar</button>
</div>
<div class="col-md-6 mb-3">
<a href="/relatorio.php" target="_blank" class="btn btn-info btn-large">Consultar Relatório</a>
</div>
</div>
<div id="mensagem" class="alert" style="display: none;"></div>
</form>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script type="text/javascript">
function gerarSenhaAleatoria() {
var tipo_senha = $('input[name="tipo_senha"]:checked').val();
var senha;
if (tipo_senha === 'normal') {
senha = Math.floor(1000 + Math.random() * 9000); // Senha de 4 dígitos
} else if (tipo_senha === 'preferencial') {
senha = 'P' + Math.floor(1000 + Math.random() * 9000); // Senha de 4 dígitos com prefixo 'P'
}
$('#senha').val(senha);
}
function cadastrarCliente() {
var nome = $('#nome').val();
var tipo_senha = $('input[name="tipo_senha"]:checked').val();
var senha = $('#senha').val();
if (!nome || !tipo_senha || !senha) {
$('#mensagem').removeClass('alert-success').addClass('alert-danger').text('Todos os campos são obrigatórios.').show();
return;
}
$.ajax({
type: 'POST',
url: 'processa_cadastro_usuarios.php',
data: { nome: nome, tipo_senha: tipo_senha, senha: senha },
success: function(response) {
var jsonResponse = JSON.parse(response);
if (jsonResponse.success) {
$('#mensagem').removeClass('alert-danger').addClass('alert-success').text(jsonResponse.success).show();
} else {
$('#mensagem').removeClass('alert-success').addClass('alert-danger').text(jsonResponse.error).show();
}
},
error: function(xhr, status, error) {
$('#mensagem').removeClass('alert-success').addClass('alert-danger').text('Erro ao cadastrar o cliente: ' + error).show();
}
});
}
</script>
</body>
</html>
<center>
<script type="text/javascript">
function importHotmart(){
var imported = document.createElement('script');
imported.src = 'https://static.hotmart.com/checkout/widget.min.js';
document.head.appendChild(imported);
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'https://static.hotmart.com/css/hotmart-fb.min.css';
document.head.appendChild(link); }
importHotmart();
</script>
<a onclick="return false;" href="https://pay.hotmart.com/H95161997J?checkoutMode=2" class="hotmart-fb hotmart__button-checkout"><img src='https://static.hotmart.com/img/btn-buy-green.png'></a>