-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
83 lines (73 loc) · 3.23 KB
/
popup.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>FACE DETECTION EXTENSION</title>
<!--Scripts-->
<script src="JS/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8" async defer></script>
<script src="JS/bootstrap.min.js" type="text/javascript" charset="utf-8" async defer></script>
<script src="JS/popup.js" type="text/javascript" charset="utf-8" async defer></script>
<!-- Style Sheets-->
<link rel="stylesheet" type="text/css" href="CSS/popup.css" media="screen">
<link rel="stylesheet" href="CSS/bootstrap.min.css" media="screen">
</head>
<body>
<div id="before_txt">
</div>
<h5 id="step_1" style='color: cornflowerblue;'></h5>
<form id="form_section" action="" method="post" >
<img src="Icons/person_default.jpg" id="profile_pic" class="img-circle img-responsive" alt="Default Pic" style="padding:5%;">
<p style='color: red; font-weight: bold;border:cornflowerblue 2px solid;margin: auto;text-align: center; display: none;' id="warn_txt">Identity Clone Attack</p>
<hr style="margin-top: 0px">
<div id="form-group-div">
<div class="form-group style="margin:0px" ">
<label for="Name" class="form_label">Name:</label>
<label id="Name_bk" class="form_label_val"></label>
</div>
<div class="form-group style="margin:0px" ">
<label for="Tweets" class="form_label">Tweets:</label>
<label id="Tweets_bk" class="form_label_val"></label>
</div>
<div class="form-group style="margin:0px" ">
<label for="Following" class="form_label">Following:</label>
<label id="Following_bk" class="form_label_val"></label>
</div>
<div class="form-group style="margin:0px" ">
<label for="Followers" class="form_label">Followers:</label>
<label id="Followers_bk" class="form_label_val"></label>
</div>
<div class="form-group style="margin:0px" ">
<label for="Likes" class="form_label">Likes:</label>
<label id="Likes_bk" class="form_label_val"></label>
</div>
<div class="form-group style="margin:0px" ">
<label for="Lists" class="form_label">Lists:</label>
<label id="Lists_bk" class="form_label_val"></label>
</div>
<center>
</center>
</div>
</form>
<div id="form-group-div-result" style="display: none">
<div class="form-group style="margin:0px" ">
<label for="profile_type" class="form_label">Profile Type :</label>
<label id="profile_type_bk" class="form_label_val"></label>
<hr>
<a style="color: #fff" id="feedback_btn"> Send a feedback.</a>
</div>
</div>
<center>
<button class="btn btn-primary" style="display: none; margin:2%" id="analyse_btn" >Analyse Profile</button>
<button class="btn btn-primary" style="display: none; margin:2% " id="update_btn">Save This Profile</button>
<button class="btn btn-primary" style="display: none; margin:2% " id="remove_btn">Remove Saved Profile</button>
</center>
<div class="container" style="display: none" id="feedback_btn_col">
<div class="row">
<button class="btn btn-danger" style="margin:1%;" id="feedback_btn_fake">Fake </button>
<button class="btn btn-success" id="feedback_btn_legitimate">Legitimate </button>
</div>
</div>
<p style="display: none;" id="res_txt">Response has been submitted.</p>
</body>
</html>