forked from KaKi87/active-forks
48 lines
No EOL
2.5 KiB
HTML
48 lines
No EOL
2.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Active Forks</title>
|
|
<link rel="stylesheet" href="assets/destyle.css">
|
|
<link rel="stylesheet" href="assets/halfmoon-variables.min.css">
|
|
<link rel="stylesheet" href="index.css">
|
|
<script defer src="assets/halfmoon.min.js"></script>
|
|
<script defer src="index.js"></script>
|
|
</head>
|
|
<body id="app" class="with-custom-webkit-scrollbars dark-mode" data-set-preferred-mode-onload="true">
|
|
<header id="app__header">
|
|
<p id="app__header__status">Status : <span id="app__header__status__value">idle</span></p>
|
|
<div id="app__header__progress" class="progress-group">
|
|
<span class="progress-group-label">Progress :</span>
|
|
<div id="app__header__progress__barContainer" class="progress">
|
|
<div id="app__header__progress__barContainer__bar" class="progress-bar progress-bar-animated" role="progressbar" style="width: 0;" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
|
|
</div>
|
|
<span id="app__header__progress__text" class="progress-group-label">000/000</span>
|
|
</div>
|
|
<fieldset id="app__header__search" class="form-inline">
|
|
<label id="app__header__search__inputContainer">Repository : <input id="app__header__search__inputContainer__input" class="form-control" type="text" autofocus></label>
|
|
<button id="app__header__search__button" class="btn btn-primary">Search</button>
|
|
</fieldset>
|
|
<label class="form-inline">Token : <input id="app__header__tokenInputContainer__input" class="form-control" type="password"></label>
|
|
</header>
|
|
<main id="app__main" style="display: none;">
|
|
<div id="app__main__resultsContainer">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Repository</th>
|
|
<th>Star count</th>
|
|
<th>Fork count</th>
|
|
<th>Default branch</th>
|
|
<th>Last default branch commit</th>
|
|
<th>Commit date</th>
|
|
<th>Commit author</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="app__main__resultsContainer__results"></tbody>
|
|
</table>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |