-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 1.93 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Profile Page</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<style>
body {
background-color: #f8f9fa;
}
.profile-card {
max-width: 400px;
margin: 50px auto;
background: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 30px;
}
.profile-img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 20px;
}
.stats {
margin-top: 20px;
}
.stat-box {
background-color: #e9ecef;
border-radius: 8px;
padding: 10px;
width: 100px;
}
</style>
</head>
<body>
<div id="zebra" class="profile-card text-center">
<img id="profile_pic" alt="Profile Picture" class="profile-img" />
<h3 id="profile_name"></h3>
<p class="text-muted">Member since: <span id="member"></span> </p>
<p id="about"></p>
<!-- GitHub button only -->
<div class="d-flex justify-content-center mt-3">
<a id="git_link" class="btn btn-outline-dark btn-sm">GitHub</a>
</div>
<!-- Stats Container -->
<div class="stats d-flex justify-content-around mt-4">
<div class="stat-box text-center">
<strong id="repos">0</strong><br />
<small>Repos</small>
</div>
<div class="stat-box text-center">
<strong id="followers">0</strong><br />
<small>Followers</small>
</div>
<div class="stat-box text-center">
<strong id="following">0</strong><br />
<small>Following</small>
</div>
</div>
<button id="logout_btn" class="btn btn-danger mt-4">Logout</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script type="module" src="src/script.js"></script>
</body>
</html>