-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 2.07 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 2.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SmartCAPTCHA Demo</title>
<link rel="stylesheet" href="/style.css?v=2" />
</head>
<body>
<main class="page">
<h1 class="title">SwipeTCHA</h1>
<p class="subtitle">Complete the slider. The widget will send behavioral features to the deployed verifier service.</p>
<section id="smartcaptcha-root" class="captcha-root"></section>
<section class="result">
<div id="smartcaptcha-status" class="status" aria-live="polite"></div>
<div class="actions">
<button id="smartcaptcha-reset" class="btn" type="button">Reset</button>
</div>
</section>
</main>
<footer class="sc-footer">
<a id="smartcaptcha-feedback" class="sc-footer-link" href="#">Feedback</a>
</footer>
<div id="sc-feedback-modal" class="sc-modal" hidden>
<div class="sc-modal__backdrop" data-sc-close="true"></div>
<div class="sc-modal__dialog" role="dialog" aria-modal="true" aria-labelledby="sc-feedback-title">
<button type="button" class="sc-modal__close" data-sc-close="true" aria-label="Close">×</button>
<h2 id="sc-feedback-title" class="sc-modal__title">Feedback</h2>
<form id="sc-feedback-form" class="sc-modal__form">
<label class="sc-modal__label">
<span>Email *</span>
<input id="sc-feedback-email" class="sc-modal__input" type="email" required autocomplete="email" />
</label>
<label class="sc-modal__label">
<span>Message</span>
<textarea id="sc-feedback-message" class="sc-modal__textarea" rows="4"></textarea>
</label>
<div id="sc-feedback-status" class="sc-modal__status" aria-live="polite"></div>
<div class="sc-modal__actions">
<button id="sc-feedback-submit" class="btn" type="submit">Send</button>
</div>
</form>
</div>
</div>
<script src="/smartcaptcha.js?v=2"></script>
<script src="/firebaseFeedback.js?v=2"></script>
<script src="/feedbackModal.js?v=2"></script>
</body>
</html>