html
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
<!-- loader from https://codepen.io/slmnbj/pen/fJGdH -->
<!--
Made By - AJ
Date - 2020/03/29 15:00
Credit goes to https://cors-anywhere.herokuapp.com/
and Sololearn to access data through web-scrappring
-->
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="loader">
<div>Y</div>
<div>A</div>
<div>J</div>
<div>A</div>
</div>
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #22475E;
scroll-behavior: smooth;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 96%;
margin: auto;
text-align: center;
font-family: arial;
margin-top:10px;
margin-bottom:10px;
}
#card1 {
display:none;
}
.main {
color: #000;
background: linear-gradient(#e7cdec,#a0f1ea);
background-repeat:no-repeat;
background-image:cover;
background-attachment:fixed;
}
Enter to Rename, Shift+Enter to Preview
js
js
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
var ID = 0;
var IMAGE = '';
var level = 0;
var xp = 0;
function getProfileDetails(link) {
link = $('#link').val();
if(link == '') {
//alert('Enter Profile Link!');
// return false;
link = 'https://www.sololearn.com/Profile/7920723/?ref=app';
}
if(!isNaN(link)) {
link = 'https://www.sololearn.com/Profile/' + link + '/?ref=app';
}
if(link !== null && link !== undefined && link !== "") {
ID = link.replace("/?ref=app","").split("e/")[1];
if(isNaN(ID)) {
alert('Enter valid Profile Link!');
return false;
}
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run