-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (50 loc) · 1.73 KB
/
index.html
File metadata and controls
62 lines (50 loc) · 1.73 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>git social</title>
<link rel="stylesheet" href="style.css">
<meta http-equiv="Content-Security-Policy" content="default-src * gap:; script-src * 'unsafe-inline' 'unsafe-eval'; connect-src *; img-src * data: blob: android-webview-video-poster:; style-src * 'unsafe-inline';">
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<main>
<section class="user-section">
<div style="text-align: center;">
<div style="border:1px solid black;overflow: hidden; border-radius:50%; height:300px ; width: 300px;margin: auto; ">
<img id="avatar"src="" alt="" width="100%" height="100%">
</div>
</div>
<div class="user-data">
<span>public repositories: <i id="ghu-public-rep"></i></span>
<span>private repositories: <i id="ghu-private-rep"></i></span>
<span>public gists: <i id="ghu-public-gists"></i></span>
<span>private gists: <i id="ghu-private-gists"></i></span>
<span>collaborators: <i id="ghu-collaborators"></i></span>
<span>signin at: <i id="ghu-signin"></i></span>
<div class="social-buttons">
<button class="add-friend">add friend</button>
<button class="block-user"> Block user</button>
</div>
</div>
</section>
<section class="stat-section">
<img width="100%" src="https://activity-graph.herokuapp.com/graph?username=ngdream&bg_color=0f2d3d&color=1cadfb&line=1cadfb&point=1cadfb&area=true&hide_border=true" alt="">
<div class="notebook">
<div class="buttons">
<a class="active">repositories</a>
<a>organizations</a>
</div>
<div class="repos-ctn">
</div>
<div>
</div>
</div>
</section>
</main>
<script src="renderer.js"></script>
<script type="module" src="services.js">
</script>
</body>
</body>
</html>