-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (109 loc) · 3.68 KB
/
Copy pathindex.html
File metadata and controls
122 lines (109 loc) · 3.68 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Ownership Boundary Validator</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="page-header">
<div class="page-header-inner">
<h1>Ownership Boundary Validator</h1>
<p class="tagline">
See where a field crosses privacy, legal, or domain boundaries it shouldn’t — before data moves across systems.
</p>
</div>
</header>
<main class="main">
<!-- LEFT PANEL: CONTROLS + SUMMARY + FIELD METADATA -->
<section class="panel panel-controls">
<div class="panel-header">
<h2>Field & Boundary Summary</h2>
</div>
<div class="field">
<label for="field-select">Field</label>
<select id="field-select" class="select">
<!-- Options injected by app.js -->
</select>
</div>
<div class="field">
<label for="lens-select">Boundary Lens</label>
<select id="lens-select" class="select">
<option value="privacy">Privacy</option>
<option value="legal">Legal / Regional</option>
<option value="domain">Domain Ownership</option>
</select>
</div>
<p id="field-description" class="concept-description">
Select a field and lens to see where it is owned, shared under contract, and out-of-bounds.
</p>
<div id="summary" class="summary">
<div id="summary-badge" class="summary-badge summary-badge-idle">
No field selected yet.
</div>
</div>
<div class="legend">
<h3>Zone Legend</h3>
<ul>
<li>
<span class="legend-dot legend-low"></span>
Zone 1 – Owned & Expected
</li>
<li>
<span class="legend-dot legend-medium"></span>
Zone 2 – Shared Under Contract
</li>
<li>
<span class="legend-dot legend-high"></span>
Zone 3 – Out-of-Bounds
</li>
</ul>
</div>
<div class="notes-card">
<h3>How to Read This Map</h3>
<p>
The validator groups systems into three zones for the selected field and lens:
ownership, allowed sharing, and out-of-bounds.
</p>
<p>
Click any system in the map to see why it belongs there and what contract or
violation applies.
</p>
</div>
<div class="field-card">
<h3>Field Metadata</h3>
<p id="field-meta-name" class="field-meta-name">—</p>
<p id="field-meta-classification" class="field-meta-line">Classification: —</p>
<p id="field-meta-owner" class="field-meta-line">Primary owner: —</p>
</div>
</section>
<!-- RIGHT PANEL: BOUNDARY MAP + DETAILS -->
<section class="panel panel-map">
<div class="panel-header">
<h2>Ownership Boundary Map</h2>
</div>
<div id="boundary-map-container" class="boundary-map-container">
<p class="map-empty">
Select a field and boundary lens to render the zone map.
</p>
</div>
<div id="details-card" class="details-card">
<h3>Boundary Details</h3>
<p class="details-empty">
Click any system in the boundary map to see its role, zone, and contract or violation details.
</p>
</div>
</section>
</main>
<footer class="page-footer">
<p>
Part of the
<a href="https://github.com/rtfenter/Systems-of-Trust-Series" target="_blank" rel="noreferrer">
Systems of Trust Series
</a>.
</p>
</footer>
<script src="app.js"></script>
</body>
</html>