forked from ProdIPData/prodipdata.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit-data-correction.html
More file actions
172 lines (164 loc) · 8.59 KB
/
Copy pathsubmit-data-correction.html
File metadata and controls
172 lines (164 loc) · 8.59 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Submit a Data Correction | GeoIP Locations</title>
<meta name="description" content="Report a data issue and prepare a structured GeoIP Locations correction request for the ProdIPData publication team." />
<meta name="robots" content="noindex,follow" />
<link rel="icon" type="image/png" href="assets/img/prodipdata-mark.png" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body data-page="submit-data-correction" data-nav-page="contact">
<header class="site-header">
<div class="container">
<div class="navbar glass">
<a class="brand" href="index.html">
<div class="brand-mark">◎</div>
<div>
GeoIP Locations
<small>Powered by ProdIPData</small>
</div>
</a>
<nav class="nav-links" aria-label="Primary navigation">
<a href="platform.html" data-nav="platform">Platform</a>
<a href="coverage.html" data-nav="coverage">Coverage</a>
<a href="methodology.html" data-nav="methodology">Methodology</a>
<a href="downloads.html" data-nav="downloads">Downloads</a>
<a href="docs.html" data-nav="docs">Documentation</a>
<a href="news.html" data-nav="news">News</a>
<a href="contact.html" data-nav="contact">Contact</a>
</nav>
<div class="header-cta">
<a class="btn btn-secondary" href="contact.html">Contact</a>
</div>
<button class="menu-button" type="button" data-menu-toggle aria-expanded="false" aria-label="Open menu">Menu</button>
</div>
<nav class="mobile-nav glass" data-mobile-nav>
<a href="platform.html" data-nav="platform">Platform</a>
<a href="coverage.html" data-nav="coverage">Coverage</a>
<a href="methodology.html" data-nav="methodology">Methodology</a>
<a href="downloads.html" data-nav="downloads">Downloads</a>
<a href="docs.html" data-nav="docs">Documentation</a>
<a href="news.html" data-nav="news">News</a>
<a href="contact.html" data-nav="contact">Contact</a>
</nav>
</div>
</header>
<main>
<section class="page-hero">
<div class="container">
<div class="page-panel glass">
<div class="eyebrow page-kicker">Data correction</div>
<h1>Submit a data correction request.</h1>
<p class="page-intro">
If you notice an error in our published data, we encourage you to send us a correction request. This page helps you prepare a clear, structured message for the ProdIPData publication team. When you click send, your email application opens a prefilled draft addressed to geoiplocations@gmail.com so you can review it and send it.
</p>
<div class="actions">
<a class="btn btn-secondary" href="contact.html">Back to Contact</a>
<a class="btn btn-secondary" href="downloads.html">Open Downloads</a>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container correction-grid">
<div class="contact-card glass content">
<h2>Correction request template</h2>
<form data-correction-form>
<div class="reference-controls correction-form-grid">
<div class="field-group">
<label for="correction-name">Your name</label>
<input id="correction-name" class="input" type="text" name="name" placeholder="Optional" />
</div>
<div class="field-group">
<label for="correction-email">Your email</label>
<input id="correction-email" class="input" type="email" name="email" placeholder="Recommended for follow-up" />
</div>
<div class="field-group">
<label for="correction-source">Affected page or dataset</label>
<input id="correction-source" class="input" type="text" name="source" placeholder="Example: CIDR catalog, Ports catalog, release 2026-04" />
</div>
<div class="field-group">
<label for="correction-category">Correction category</label>
<select id="correction-category" class="select" name="category">
<option value="Data value">Data value</option>
<option value="Metadata">Metadata</option>
<option value="Broken link">Broken link</option>
<option value="Technical catalog">Technical catalog</option>
<option value="Monthly release package">Monthly release package</option>
<option value="Other">Other</option>
</select>
</div>
<div class="field-group correction-full-span">
<label for="correction-summary">Short summary</label>
<input id="correction-summary" class="input" type="text" name="summary" placeholder="Required" required />
</div>
<div class="field-group correction-full-span">
<label for="correction-details">Correction needed</label>
<textarea id="correction-details" class="textarea" name="details" rows="8" placeholder="Describe the issue and the exact correction needed." required></textarea>
</div>
<div class="field-group correction-full-span">
<label for="correction-evidence">Supporting evidence or source</label>
<textarea id="correction-evidence" class="textarea" name="evidence" rows="5" placeholder="Optional links, references, screenshots, or publication notes."></textarea>
</div>
<div class="field-group correction-full-span">
<label for="correction-notes">Additional notes</label>
<textarea id="correction-notes" class="textarea" name="notes" rows="4" placeholder="Optional operational context or preferred response details."></textarea>
</div>
</div>
<div class="actions correction-actions">
<button class="btn btn-primary" type="submit">Send correction request</button>
<button class="btn btn-secondary" type="button" data-copy-correction>Email text only</button>
</div>
<div class="correction-status" data-correction-status>
This page prepares a prefilled email draft. It does not transmit mail silently from the website, which keeps the static publication site lightweight and secure.
</div>
</form>
</div>
<div class="contact-card glass content">
<h3>How this works</h3>
<p>
The form assembles a structured email draft to <strong>geoiplocations@gmail.com</strong>. After you click <strong>Send correction request</strong>, your browser opens the default email application configured on your device.
</p>
<p>
If no email application is configured, use <strong>Email text only</strong> to copy the correction content and send it manually from your mailbox.
</p>
<div class="download-list correction-guidance-list">
<div class="download-item">
<div>
<strong>Best practice</strong>
<small>Include the exact dataset, page, release month, and the expected corrected value.</small>
</div>
<span class="badge info">Recommended</span>
</div>
<div class="download-item">
<div>
<strong>Evidence quality</strong>
<small>Authoritative sources, official registries, and reproducible examples accelerate triage.</small>
</div>
<span class="badge success">High value</span>
</div>
<div class="download-item">
<div>
<strong>Operational note</strong>
<small>The destination mailbox is geoiplocations@gmail.com.</small>
</div>
<span class="badge info">Mail target</span>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container site-footer-inner">
<div>© <span data-current-year></span> GeoIP Locations · ProdIPData</div>
<div><a href="licensing.html">Datasets and metadata: CC BY 4.0</a></div>
<div>Engineered and published by the ProdIPData team.</div>
</div>
</footer>
<script src="assets/js/site.js" defer></script>
<script src="assets/js/correction.js" defer></script>
</body>
</html>