-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
73 lines (59 loc) · 3.19 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
73
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/styles/index.css">
<title>TabStats</title>
<meta name="description" content="Veja estatísticas de usuários do TabNews com o TabStats">
<link rel="icon" type="image/x-icon" href="./src/img/favicon-light.ico" />
<meta name="google-site-verification" content="CBjERe8zuLaZIWFMPgTNHTGa4jAC5ndfFtDNDqncnjE" />
<script async src="https://api.countapi.xyz/hit/tabstats.ga/43dcdad0-0d19-45f1-bea3-c1b8aefd3e5f"></script>
</head>
<body>
<header class="header">
<img src='./src/img/logo.svg' class='header-logo' />
<h1 className='headertext'>TabStats</h1>
</header>
<main>
<div class="form-container" id="form-container">
<form class="main-form" onsubmit="run(event)" id="main-form">
<label class="form-label-username">Nome de usuário:</label>
<input type="text" autocomplete="username" class="form-input-username" id="username" />
<br />
<div
class="form-submit-button" id="button-get-form-data">Ver estatísticas</div>
</form>
</div>
<div class="info-container" id="info-container">
<div class="username-container" id="username-container"></div>
<div class="infos" id="infos"></div>
<div class="features" id="features"><h4 class="featuresText">Permissões:</h4></div>
<div class="created-date" id="created-date"><h4 class="createdDateText">Conta criada em:</h4></div>
<div class="updated-date" id="updated-date"><h4 class="updatedDateText">Editada pela última vez em:</h4></div>
<div class="refresh-container">
<button id="refresh"><a href="./">Ver outro perfil</a>
</button>
</div>
</div>
<div class="error-container" id="error-container">
<div class="error-text" id="error-text"></div>
<div class="refresh-container">
<button id="refresh"><a href="./">Ver outro perfil</a></button>
</div>
</div>
<div class="about">
<h2 class="about-title">Sobre o TabStats</h2>
<p class="about-text">O TabStats é um site criado para ver informações de outros usuários do <a href="https://www.tabnews.com.br">TabNews</a></p>
<p class="about-text">O projeto também é open-source e foi desenvolvido usando HTML5, CSS3 e JavaScript (puros), hospedado na Netlify e usando a API aberta do TabNews. Você pode acessar o repositório <a href="https://github.com/gabrielsozinho/TabStats">Clicando aqui</a>, sua contribuição será muito bem-vinda!
</p>
</div>
<footer>
<p>Criado especialmente para <a href="https://github.com/filipedeschamps/tabnews.com.br">uma comunidade incrível</a>.</p>
</footer>
</main>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="./src/js/index.js"></script>
</body>
</html>