This repository has been archived by the owner on May 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
117 lines (105 loc) · 4.91 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
<!DOCTYPE html>
<html>
<head>
<title>Mr. Foxie</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1,
shrink-to-fit=no" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<link rel="shortcut icon" href="assets/images/mrfoxie.png" type="image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
background-color: #ffffff;
background-image: url('assets/images/hacked.jpg');
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.card {
position: fixed;
top: 0%;
bottom: 0%;
left: 0%;
right: 0%;
margin: auto;
width: 350px;
height: 490px;
background-color: #ffffff;
border: none;
box-shadow: 2px 2px 10px #333333;
}
.input-group-text {
background-color: transparent;
border-color: #f42b03;
}
input {
color: #ffffff;
}
input.form-control {
background-color: transparent;
color: #f42b03;
border-color: #f42b03;
}
input[type="text"]:focus {
background-color: transparent;
border-color: #f42b03;
color: #F42B03;
box-shadow: 0px 0px 10px #f42b03;
}
input[type="text"]::placeholder {
color: #f42b03;
}
.alert {
color: #f42b03;
text-shadow: 0px 0px 10px #F42B03;
border: none;
background-color: transparent;
}
i {
color: #F42B03;
margin: 3px;
}
::selection {
background-color: #f42b03;
color: #ffffff;
}
</style>
</head>
<body>
<div class="container">
<div class="row d-flex justify-content-center">
<div class="col-md-4">
<div class="card text-light">
<a href="mrfoxie.ml"><img class="card-img-top" src="assets/images/mrfoxie.png" alt="logo" /></a>
<form action="search.php" method="get">
<div class="card-body">
<div class="input-group mb-3">
<div class="input-group-prepend"><span class="input-group-text" id="basic-addon1" style="color: #f42b03;">@</span></div><input type="text" class="form-control" placeholder="Type here to search." aria-label="Search" aria-describedby="basic-addon1" name="term"
required /></div>
<div class="col-sm-12 text-center">
<a href="http://mrfoxie.ml" target="_blank" rel="noopener noreferrer"><i class="fa fa-sitemap fa-lg" aria-hidden="true"></i></a>
<a href="http://t.me/MrFoxie" target="_blank" rel="noopener noreferrer"><i class="fa fa-telegram fa-lg" aria-hidden="true"></i></a>
<a href="https://github.com/mrfoxie/mrfoxie-search" target="_blank" rel="noopener noreferrer"><i class="fa fa-github-alt fa-lg" aria-hidden="true"></i></a>
<a href="mailto:hackingtiger942@gmail.com"><i class="fa fa-envelope fa-lg" aria-hidden="true"></i></a>
<a href="submit-url.php" target="_blank" rel="noopener noreferrer"><i class="fa fa-upload fa-lg" aria-hidden="true"></i></a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first,
then Popper.js,
then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>