-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanks.php
52 lines (45 loc) · 1.73 KB
/
thanks.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
<!DOCTYPE html>
<html>
<head>
<title>secureForm 2- Simple Client Side Form Validation</title>
<!-- styles -->
<link rel="stylesheet" type="text/css" href="css/secureForm.css" />
<link rel="stylesheet" type="text/css" href="css/example.css" />
<!-- html5 shiv -->
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6/html5shiv.min.js"></script>
<!-- jquery -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<!-- underscore -->
<script type="text/javascript" src="js/lib/underscore.js"></script>
<!-- app -->
<script type="text/javascript" src="js/modules/init.js"></script>
<script type="text/javascript" src="js/modules/elements.js"></script>
<script type="text/javascript" src="js/modules/options.js"></script>
<script type="text/javascript" src="js/modules/errors.js"></script>
<script type="text/javascript" src="js/modules/required.js"></script>
<script type="text/javascript" src="js/modules/captcha.js"></script>
<script type="text/javascript" src="js/modules/compare.js"></script>
<script type="text/javascript" src="js/modules/confirm.js"></script>
<script type="text/javascript" src="js/modules/email.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript">
secureForm.options({
"testing":"test128",
"elements": {
}
});
</script>
</head>
<body>
<header>
<img class="logo" alt="secureFormjs logo" src="images/logo.jpg" />
<h1>simple client side form validation</h1>
</header>
<section id="introduction">
<h2>Thanks</h2>
<p>Form submitted.</p>
<a class="author" href="index.html">« go back</a>
</section>
</main>
</body>
</html>