-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (58 loc) · 2.08 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Web Scraper</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 style="display: none" id="checkProfile">Please visit a Linkedin Profile first</h1>
<button class="btn-gradient-2" id="startScrapingButton">Start Scrapping</button>
<button class="btn-gradient-2" id="showPreviousButton">Previous Data</button>
<div id="scrapper" style="display: none">
<img src="" alt="User Avatar" class="avatar">
<div class="name">
<h1 id="page-title"> </h1>
</div>
<div class="job">
<h2 id="current-company"></h2>
</div>
<p class="description"></p>
<!-- <p id="spanCount">Number of Posts extracted<span><span dir="ltr">: <span id="count">0</span></p> -->
<div id="loading">
<div class="loading_parent">
<h1>Loading</h1>
<div class="lds-ellipsis">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<div id="response" style="display: none">
<div class="interest">
<p id="Interests"></p>
</div>
<div class="response_child">
<h1>Message </h1>
<p id="message"></p>
<button id="copyMessageButton" style="display: none">Copy Message</button>
</div>
<div class="response_child">
<h1>Profile Summary</h1>
<p id="profile"></p>
</div>
<div class="response_child">
<h1>Company Homepage Summary </h1>
<p id="Company_Summary"></p>
</div>
</div>
</div>
<div class="liberate_labs">
<a href="https://liberate-labs.com/" target="_blank">
<p class="credit"><span>©  </span> Liberate Labs <img src="logo.png" alt="Labirate Labs Logo"></p>
</a>
</div>
<script src="index.js"></script>
</body>
</html>