-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (56 loc) · 3.02 KB
/
index.html
File metadata and controls
67 lines (56 loc) · 3.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dataverse Record Counter</title>
<!-- Meta Tags -->
<meta name="description"
content="Dataverse Record Counter is a quick browser based alternative for XrmToolBox plugins like Fast Record Counter, FetchXml Record Counter for Developers">
<meta name="keywords"
content="Dataverse Row Counter,Dataverse Record Counter,Dynamics Record Counter,Fast Record Counter, XrmToolBox">
<meta name="author" content="Ashish Vishwakarma">
<meta property="og:url" content="https://www.ashishvishwakarma.com/DataverseRowCounter">
<meta property="og:type" content="website">
<meta property="og:title" content="Dataverse Record Counter">
<meta property="og:description"
content="Dataverse Record Counter is a quick browser based alternative for XrmToolBox plugins like Fast Record Counter, FetchXml Record Counter for Developers">
<meta property="og:image" content="https://www.ashishvishwakarma.com/DataverseRowCounter/DataverseRowCounter.webp">
<!-- Favicon -->
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🧮</text></svg>">
<!-- Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CGWJKN5SH2"></script>
<script>window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-CGWJKN5SH2');</script>
<!-- Styles -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/balloon-css/balloon.min.css">
</head>
<body>
<div class="container">
<button id="theme-toggle" class="theme-toggle" title="Toggle Dark/Light Mode"
aria-label="Toggle Theme">🌓</button>
<h1 class="title"><span class="highlight">(</span>Dataverse Row Counter<span class="highlight">)</span></h1>
<div class="input-group">
<input id="orgURL" type="url"
placeholder="Enter Dataverse environment URL (e.g., https://myenv.crm.dynamics.com)"
aria-label="Organization URL" />
<div id="url-validation-msg" class="validation-msg"></div>
</div>
<div class="tags-input">
<ul id="tags" class="tags-list">
<!-- Tags will be injected here by JS -->
</ul>
<input type="text" id="input-tag" placeholder="Type table name & press Enter..." aria-label="Add Entity"
style="margin-top: 10px;" />
</div>
<div class="footer">
<hr />
<p>Built with ❤️ by <a href="https://www.linkedin.com/in/ashishvishwakarma-ashv/" target="_blank">AshV</a>
</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>