-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (49 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Twitter Başarı Puanı</title>
<style>
.btn {
padding: 10px 20px;
background-color: #4287f5;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
.wallet-button {
position: absolute;
top: 10px;
right: 10px;
}
.twitter-button {
margin-top: 10px;
}
</style>
</head>
<body>
<h1>Twitter Başarı Puanı</h1>
<div id="profile">
<h2>Profil</h2>
<p>Kullanıcı Adı: <span id="username"></span></p>
<p>Toplam Puan: <span id="totalPoints"></span> XP</p>
</div>
<div id="activity">
<h2>Aktivite Geçmişi</h2>
<table>
<thead>
<tr>
<th>Tweet</th>
<th>Etkinlik</th>
<th>Puan</th>
</tr>
</thead>
<tbody id="activityTableBody">
</tbody>
</table>
</div>
<button id="walletButton" class="btn wallet-button">Cüzdan</button>
<button id="twitterButton" class="btn twitter-button">Twitter Bağlantısı</button>
<script src="script.js"></script>
</body>
</html>