-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
51 lines (50 loc) · 2.15 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
<!doctype html>
<html>
<head>
<title>Handle@Awareness</title>
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link rel="stylesheet" type="text/css" href="assets/font/css/font-awesome.min.css" />
<!-- javascript -->
<script type="text/javascript" src="assets/js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
</head>
<body>
<div class="input-group">
<span class="input-group-addon" class="handle-symb">@</span>
<input id="handle-input" type="text" class="form-control" placeholder="handle" aria-describedby="basic-addon3">
<span class="input-group-btn">
<input id="submit" name="submit" type="submit" value="stalk" class="btn btn-custom">
</span>
</div>
<div class="checkbox-group" align="center">
<label class="checkbox-inline">
<input id="facebook" type="checkbox" value="facebook" checked>
<i class="fa fa-facebook-official" aria-hidden="true"></i>
</label>
<label class="checkbox-inline">
<input id="github" type="checkbox" value="github" checked>
<i class="fa fa-github" aria-hidden="true"></i>
</label>
<label class="checkbox-inline">
<input id="linkedin" type="checkbox" value="linkedin" checked>
<i class="fa fa-linkedin" aria-hidden="true"></i>
</label>
<label class="checkbox-inline">
<input id="twitter" type="checkbox" value="twitter" checked>
<i class="fa fa-twitter" aria-hidden="true"></i>
</label>
<label class="checkbox-inline">
<input id="instagram" type="checkbox" value="instagram" checked>
<i class="fa fa-instagram" aria-hidden="true"></i>
</label>
<label class="checkbox-inline">
<input id="reddit" type="checkbox" value="reddit" checked>
<i class="fa fa-reddit" aria-hidden="true"></i>
</label>
</div>
<!-- load javascript: unique html page javascript file -->
<script type="text/javascript" src="popup.js"></script>
</body>
</html>