-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.php
More file actions
73 lines (39 loc) · 1.71 KB
/
config.php
File metadata and controls
73 lines (39 loc) · 1.71 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
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
<?php
// OPCIONES EDITABLES | CONFIG
// IP O DOMINIO DEL HOST:
$ip = "localhost";
// NOMBRE USARIO SQL
$user = "root";
// CLAVE USUARIO SQL
$pass = "";
// NOMBRE BASE DE DATOS
$db = "minecraft";
$table = "authme";
// EMAIL EMPRESA:
$companymail = "contacto@miserver.com";
// HEADER PAGINA
$title = "Authme Login Panel PRO";
$favicon = "https://img.icons8.com/fluency/300/minecraft-golden-apple.png";
$container_icon = "https://img.icons8.com/fluency/300/minecraft-golden-apple.png";
$background = "https://i.imgur.com/qqYFOsy.png";
// MENSAJES Y ERRORES
$incorrect_pass = "Clave incorrecta...";
$incorrect_user = "Usuario no encontrado...";
$incorrect_player = "Jugador no encontrado...";
$need_verification = "Es necesario verificar tu email...";
$smtp_error = "Este servicio no esta disponible, disculpe las molestias...";
// REGISTER ERRORS
$please_nick = "Por favor ingrese su nickname...";
$please_email = "Por favor ingrese su email...";
$please_pass = "Por favor ingrese una contraseña...";
$please_vpass = "Por favor confirme su contraseña...";
$pass_no_match = "Las contraseñas no coinciden...";
$pass_lenght = "Tu contraseña debe tener minimo 8 caracteres...";
$registration_problem = "Ocurrio un problema, por favor intentelo nuevamente...";
$token_empty = "Por favor ingresa el codigo de verificacion que hemos enviado a tu email...";
$try_again = "Por favor intentelo nuevamente...";
$code_no_match = "El codigo no coincide, vuelve a intentarlo...";
$contact_admin = "Ha ocurrido un error, contactate con un administrador...";
$alredy_user = "Este usuario ya existe...";
$alredy_email = "Este email ya esta en uso...";
?>