-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
53 lines (44 loc) · 1.75 KB
/
github.html
File metadata and controls
53 lines (44 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<title>DevTrackr – GitHub</title>
<link rel="stylesheet" href="style.css">
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-auth-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-firestore-compat.js"></script>
</head>
<body class="app">
<div class="page">
<div class="left-panel">
<h1><span>Dev</span>Trackr</h1>
<p>Bring your GitHub repos and commit history into the same space as your daily coding log.</p>
</div>
<div class="right-panel">
<div class="top-nav">
<div><span class="badge">GitHub view</span></div>
<div>
<a href="dashboard.html">Logs</a>
<a href="github.html" class="active">GitHub</a>
<a href="code-class.html">Code_Class</a>
<a href="profile.html">Profile</a>
<a href="playground.html">Playground</a>
<a href="#" id="btn-logout">Logout</a>
</div>
</div>
<div class="card wide">
<h2>GitHub activity</h2>
<p class="subtitle">Link your GitHub username and quickly see your active repositories and last commits.</p>
<label for="github-username">GitHub username</label>
<input id="github-username" placeholder="your-github-username">
<div class="button-row">
<button id="btn-save-github" class="btn-primary">Save username</button>
<button id="btn-load-github" class="btn-secondary">Load Repositories</button>
</div>
<h3 style="margin-top:24px;">Repositories</h3>
<ul id="github-repos"></ul>
</div>
</div>
</div>
<script src="app-github.js"></script>
</body>
</html>