-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent.html
More file actions
91 lines (77 loc) · 2.61 KB
/
agent.html
File metadata and controls
91 lines (77 loc) · 2.61 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Agent Identity — {{CONTRIBUTOR_NAME}}</title>
<meta
name="description"
content="Forged Agent Identity for {{CONTRIBUTOR_NAME}}, a ToadAid Contributor."
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="nav" id="navbar">
<a class="brand" href="index.html">
<span class="nav-sigil">🪷</span>
{{CONTRIBUTOR_NAME}}
</a>
<div class="menu-toggle" onclick="toggleMenu()">☰</div>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="toadaid.html">ToadAid</a></li>
<li><a class="active" href="agent.html">Agent ID</a></li>
<li><a href="links.html">Links</a></li>
</ul>
</nav>
<main class="page">
<section class="panel page-hero">
<div class="eyebrow">🪪 Forged Agent Identity</div>
<h1>{{AGENT_ID}}</h1>
<p class="lead">
This page connects {{CONTRIBUTOR_NAME}}’s public contributor identity with their forged Agent ID,
wallet, and onchain footprint.
</p>
</section>
<section class="section">
<h2>Identity Details</h2>
<p class="section-lead">
Replace the placeholder values below when setting up a new contributor site.
</p>
<div class="grid">
<article class="card">
<div class="card-icon">🪪</div>
<h3>Agent ID</h3>
<p>{{AGENT_ID}}</p>
</article>
<article class="card">
<div class="card-icon">👛</div>
<h3>Wallet</h3>
<p>{{WALLET_ADDRESS}}</p>
</article>
<article class="card">
<div class="card-icon">🔎</div>
<h3>Explorer</h3>
<p>Use the links page to connect Agent Explorer, BaseScan, and other public records.</p>
</article>
</div>
<div class="actions">
<a class="btn" href="{{AGENT_PAGE_URL}}" target="_blank" rel="noopener noreferrer">View Agent Page</a>
<a class="btn secondary" href="{{BASESCAN_URL}}" target="_blank" rel="noopener noreferrer">View on BaseScan</a>
</div>
</section>
<section class="panel quote">
<p>
“Local names may be human.<br />The pond remembers through identity.”
</p>
<span>Agent Identity</span>
</section>
</main>
<footer class="footer">
<div>{{CONTRIBUTOR_NAME}} — Agent Identity</div>
<div><a href="links.html">View links</a></div>
</footer>
<script src="script.js"></script>
</body>
</html>