-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathverif_old.php
More file actions
141 lines (121 loc) · 2.93 KB
/
verif_old.php
File metadata and controls
141 lines (121 loc) · 2.93 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
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
<?php
session_start();
if(isset($_POST['Submit'])){
$logins = array('123456' => '123456','Luis' => 'leakedlmao');
$Username = isset($_POST['Username']) ? $_POST['Username'] : '';
$Password = isset($_POST['Password']) ? $_POST['Password'] : '';
if (isset($logins[$Username]) && $logins[$Password] == $Password){
$_SESSION['UserData']['Username']=$logins[$Username];
header("location:./process_send");
exit;
} else {
$msg="<span style='color:red'>No se pudo confirmar el codigo, Consulte con el gestor del sistema (Luis)</span>";
}
}
?>
<!DOCTYPE html>
<link rel="icon" type="image/png" href="https://cloud.luisweb.cf/cloud/favicon.png" />
<title>LuisCloud Login</title>
<style>
body{
padding:0;
margin:0;
}
.vid-container{
position:relative;
height:100vh;
overflow:hidden;
}
.bgvid{
position:absolute;
left:0;
top:0;
width:100vw;
}
.inner-container{
width:400px;
height:400px;
position:absolute;
top:calc(50vh - 200px);
left:calc(50vw - 200px);
overflow:hidden;
}
.bgvid.inner{
top:calc(-50vh + 200px);
left:calc(-50vw + 200px);
filter: url("data:image/svg+xml;utf9,<svg%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'><filter%20id='blur'><feGaussianBlur%20stdDeviation='10'%20/></filter></svg>#blur");
-webkit-filter:blur(10px);
-ms-filter: blur(10px);
-o-filter: blur(10px);
filter:blur(10px);
}
.box{
position:absolute;
height:100%;
width:100%;
font-family:Helvetica;
color:#fff;
background:rgba(0,0,0,0.13);
padding:30px 0px;
}
.box h1{
text-align:center;
margin:30px 0;
font-size:30px;
}
.box input{
display:block;
width:300px;
margin:20px auto;
padding:15px;
background:rgba(0,0,0,0.2);
color:#fff;
border:0;
}
.box input:focus,.box input:active,.box button:focus,.box button:active{
outline:none;
}
.box button{
background:#2ecc71;
border:0;
color:#fff;
padding:10px;
font-size:20px;
width:330px;
margin:20px auto;
display:block;
cursor:pointer;
}
.box button:active{
background:#27ae60;
}
.box p{
font-size:14px;
text-align:center;
}
.box p span{
cursor:pointer;
color:#666;
}
</style>
<form action="" method="post" name="Login_Form">
<div class="vid-container">
<source src="https://cloud.luisweb.cf/cloud/bg55444.mp4" type="video/mp4">
</video>
<div class="inner-container">
<video class="bgvid inner" autoplay="autoplay" muted="muted" preload="auto" loop>
<source src="https://cloud.luisweb.cf/cloud/bg55444.mp4" type="video/mp4">
</video>
<div class="box">
<h1>VERIFICACIÓN- LuisSec</h1>
<h3>El cajero te acaba de dar un codigo, escribelo aqui</h3>
<?php if(isset($msg)){?>
<tr>
<td colspan="2" align="center" valign="top"><?php echo $msg;?></td>
</tr>
<?php } ?>
<input name="Username" class="Input" type="number" placeholder="Codigo"/>
<td><button type="submit" name="Submit" >Verificar</button></td>
</div>
</div>
</div>