forked from fabianwennink/IconCaptcha-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
60 lines (54 loc) · 2.75 KB
/
index.php
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
<?php
/**
* IconCaptcha Plugin: v2.4.0
* Copyright © 2017, Fabian Wennink (https://www.fabianwennink.nl)
*
* Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
*/
?>
<!DOCTYPE HTML>
<html>
<head>
<title>IconCaptcha Plugin v2 - By Fabian Wennink</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<meta name="author" content="Fabian Wennink © <?= date('Y') ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="assets/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="assets/demo.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<div class="logo-text">
<a href="https://github.com/fabianwennink/IconCaptcha-Plugin-jQuery-PHP/" target="_blank">
Ic<span>o</span>nCaptcha
</a>
</div>
<div class="shields">
<img src="https://img.shields.io/badge/Version-2.4.0-orange.svg?style=flat-square" /> <img src="https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square" />
<img src="https://img.shields.io/badge/Maintained-Yes-green.svg?style=flat-square" /> <a href="https://paypal.me/nlgamevideosnl" target="_blank"><img src="https://img.shields.io/badge/Donate-PayPal-yellow.svg?style=flat-square" /></a>
</div>
<div class="section">
<h2>Examples:</h2>
<a href="examples/regular-form.php"><div class="btn">Regular HTML form</div></a>
<a href="examples/ajax-form.php"><div class="btn">Ajax form</div></a>
</div>
<div class="section">
<h2>Links:</h2>
<a href="https://github.com/fabianwennink/IconCaptcha-Plugin-jQuery-PHP/" target="_blank"><div class="btn">GitHub repository</div></a>
<a href="https://paypal.me/nlgamevideosnl" target="_blank"><div class="btn">Buy me a coffee</div></a>
<a href="https://fabianwennink.nl/en/" target="_blank"><div class="btn">Fabian Wennink <small>(developer)</small></div></a>
</div>
<div class="copyright">
<p>Copyright © <?= date('Y'); ?> Fabian Wennink - All rights reserved</p>
<p><small>IconCaptcha is licensed under MIT.</small></p>
</div>
</div>
<a href="https://github.com/fabianwennink/IconCaptcha-Plugin-jQuery-PHP/">
<div class="corner-ribbon top-left">
STAR ME ON GITHUB
</div>
</a>
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700" rel="stylesheet">
</body>
</html>