-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-form.html
More file actions
76 lines (68 loc) · 4.06 KB
/
contact-form.html
File metadata and controls
76 lines (68 loc) · 4.06 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
<!-- ✅ EMBEDDED SECURE CONTACT MODAL (VISUALLY IDENTICAL) -->
<div class="contact-modal" id="contactModal" role="dialog" aria-modal="true"
aria-labelledby="contactModalTitle" aria-describedby="contactModalDesc">
<div class="modal-overlay" id="closeModal"></div>
<div class="modal-content secure-modal">
<button class="modal-close" id="modalCloseBtn" aria-label="Close">×</button>
<div class="secure-badge">Secure & Confidential Channel</div>
<h2 id="contactModalTitle">Request a Confidential Discussion</h2>
<p class="modal-note secure-note" id="contactModalDesc">
This secure channel is intended for sensitive inquiries. Information is accessible only to authorized
personnel. Please do not include passwords, OTPs, or full account numbers.
</p>
<!-- ✅ PERFECT FORM -->
<form class="contact-form"
action="https://script.google.com/macros/s/AKfycbyf_-rOi88GFxIeMnoUQJcVCsEUdtvs88hKjhKgi4oGYyfjIcn9o9bcIDZjInsORMRG/exec"
method="POST" novalidate>
<input type="hidden" name="_csrf" value="generate-unique-token">
<input type="hidden" name="source" value="Secure Website Contact">
<input type="hidden" name="confidentiality" value="Privileged & Confidential">
<input type="hidden" name="hp_email" autocomplete="off">
<label for="name">Full Name *
<input id="name" type="text" name="name" required autocomplete="name" placeholder="Full Name">
</label>
<label for="email">Email Address *
<input id="email" type="email" name="email" required autocomplete="email"
placeholder="your.email@example.com">
</label>
<label for="phone">Phone
<input id="phone" type="tel" name="phone" placeholder="XXX XXX-XXXX" autocomplete="tel">
</label>
<label for="org">Organization / Institution
<input id="org" type="text" name="organization" placeholder="Institution name"
autocomplete="organization">
</label>
<label for="service">Service Type *
<select id="service" name="service_type" required>
<option value="">Select a service</option>
<option value="credit integrity audit">Credit Integrity Review</option>
<option value="staff accountability review">Staff Accountability Assessment</option>
<option value="vendor surveillance">Third-Party Vendor Review</option>
<option value="ews monitoring">Early Warning Signal Monitoring</option>
<option value="other">Other / Not Sure</option>
</select>
</label>
<label for="message">Nature of Inquiry
<textarea id="message" name="message" rows="4"
placeholder="High-level description only. Do not include credentials or account numbers."></textarea>
</label>
<div class="secure-footer">
<span>🔒 Encrypted transmission</span>
<span>🛡️ Restricted professional access</span>
</div>
<p id="formFeedback" class="small-note" style="display:none;" role="alert" aria-live="polite"></p>
<button type="submit" class="form-submit secure-submit">
<span class="btn-text">Submit Secure Request</span>
<span class="btn-spinner" aria-hidden="true"></span>
</button>
<p class="small-note">Engagements are subject to independence and conflict-of-interest checks.</p>
</form>
<!-- SUCCESS STATE -->
<div class="success-state" hidden role="status" aria-live="polite">
<div class="success-check">✓</div>
<h3>Request Submitted</h3>
<p>Your confidential request has been received. Our team will review and respond appropriately.</p>
<button type="button" class="success-close">Close</button>
</div>
</div>
</div>