generated from ubiquity/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0f6a42
commit 31c9d70
Showing
72 changed files
with
14,315 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,73 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Ubiquity TypeScript Template</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
<title>Audit report</title> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link href="out/styles/audit-report/audit.css" rel="stylesheet" /> | ||
</head> | ||
|
||
<body> | ||
<h1>Ubiquity TypeScript Template</h1> | ||
<script type="module" src="dist/main.js"></script> | ||
<div class="container"> | ||
<h1 class="audit-tag">Audit report</h1> | ||
<!-- params --> | ||
<div class="mb-3"> | ||
<label for="botWalletAddress" class="form-label">Bot wallet address</label> | ||
<input type="text" class="form-control" id="botWalletAddress" /> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="repoURLs" class="form-label">Repository URLs</label> | ||
<input type="text" class="form-control" id="repoURLs" /> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="githubPAT" class="form-label">Github Personal Access Token</label> | ||
<input type="text" class="form-control" id="githubPAT" /> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="quickName" class="form-label">Quick Import</label> | ||
<textarea | ||
type="text" | ||
class="form-control" | ||
id="quickName" | ||
placeholder=' | ||
{ | ||
"WALLET": "", | ||
"REPO": "", | ||
"PAT": "" | ||
}' | ||
></textarea> | ||
</div> | ||
<div class="btn-container"> | ||
<button type="button" class="btn btn-primary mb-3" id="getReport"> | ||
<span class="btn-loader" id="report-loader"></span> | ||
<span>Get report</span> | ||
</button> | ||
<div class="tg-list-item"> | ||
<input class="tgl tgl-flat" id="cb4" type="checkbox" /> | ||
<label class="tgl-btn" for="cb4"></label> | ||
<div class="cache-title">⚡Cache</div> | ||
</div> | ||
</div> | ||
<!-- result table --> | ||
<div class="resultContainer"> | ||
<input type="text" id="searchInput" placeholder="Filter Result" /> | ||
<table id="resultTable" class="table" style="display: none"> | ||
<thead> | ||
<tr> | ||
<th scope="col">Organization/Repo Name</th> | ||
<th scope="col">Issue URL</th> | ||
<th scope="col">Bounty Hunter</th> | ||
<th scope="col" id="amountHeader">Amount <span id="sortArrow">↓</span></th> | ||
<th scope="col">TX URL</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<!-- table content --> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
<ul class="notifications"></ul> | ||
<script src="out/scripts/audit-report/audit.js" type="application/javascript"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.