-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
43 lines (40 loc) · 777 Bytes
/
success.html
File metadata and controls
43 lines (40 loc) · 777 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>RobustIRC CAPTCHA</title>
<style type="text/css">
{{ template "font.css" }}
body {
font-family: "Open Sans";
}
#content {
text-align: center;
}
#content > * {
margin-left:auto;
margin-right:auto
}
</style>
</head>
<body onload="onload()">
<div id="content">
<p>
Thanks for your patience!
</p>
<p>
Please proceed with the following command in your IRC client:
</p>
<pre>
{{- if eq (index .Purposeparts 0) "join" -}}
/join {{ index .Purposeparts 2 }} {{ .Token }}
{{- else if eq (index .Purposeparts 0) "login" -}}
/quote pass captcha={{ .Token }}</pre>
<p>
or:
</p>
<pre>/raw pass captcha={{ .Token }}
{{- end -}}
</pre>
</div>
</body>
</html>