forked from earthshakira/android_hack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·39 lines (38 loc) · 1.26 KB
/
index.html
File metadata and controls
executable file
·39 lines (38 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Android Exploit Tool</title>
<link rel="stylesheet" href="./bootstrap/css/bootstrap.css" >
<link rel="stylesheet" type="text/css" href="./css/theme.css" >
<script type="text/javascript" src="js/jquery.js"></script>
</head>
<body class="main-bg">
<p class="text-primary" style="float:right">earthshakira</p>
<div class="container main-bg">
<div class="well login">
<h3 class="text-default text-center">Android Exploit Tool</h3>
<img src="./img/logo.jpg" class="main-logo"/>
<div class="form-group">
<label>Username</label>
<input type="email" class="form-control" placeholder="Username">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" class="form-control" placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Remember Me
</label>
</div>
<button type="submit" class="btn btn-primary center">Submit</button>
</div>
<script type="text/javascript">
$(document).ready(function(){
console.log($(document));
});
</script>
</div>
</body>
</html>