-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
690 lines (633 loc) · 35.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
<?php
if (isset($_POST["submit"])) {
$name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
$human = intval($_POST['human']);
$from = '[email protected]';
$to = '[email protected]';
$subject = 'Message from AnthonyFrank.me';
$body ="From: $name\n E-Mail: $email\n Message:\n $message";
// Check if name has been entered
if (!$_POST['name']) {
$errName = 'Please enter your name';
}
// Check if email has been entered and is valid
if (!$_POST['email'] || !filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) {
$errEmail = 'Please enter a valid email address';
}
//Check if message has been entered
if (!$_POST['message']) {
$errMessage = 'Please enter your message';
}
//Check if simple anti-bot test is correct
if ($human !== 5) {
$errHuman = 'Your anti-spam is incorrect';
}
// If there are no errors, send the email
if (!$errName && !$errEmail && !$errMessage && !$errHuman) {
if (mail ($to, $subject, $body, $from)) {
/*$result='<div class="alert alert-success"><p>Thank You! I will be in touch</p></div>';*/
header("Location: thankyou.php");
exit();
} else {
$result='<div class="alert alert-danger"><p>Sorry there was an error sending your message. Please try again later.</p></div>';
}
}
}
?>
<html dir="ltr" lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Anthony Frank - Portfolio</title>
<!-- Custom Frank Icon -->
<link rel="apple-touch-icon" sizes="57x57" href="fav_icon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="fav_icon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="fav_icon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="fav_icon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="fav_icon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="fav_icon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="fav_icon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="fav_icon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="fav_icon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="fav_icon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="fav_icon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="fav_icon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="fav_icon/favicon-16x16.png">
<link rel="manifest" href="fav_icon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="fav_icon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Previous Sheets -->
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="css/reset.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/prettyPhoto.css"/>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans:400,600,300,800,700,400italic|PT+Serif:400,400italic"/>
<!--[if IEMobile]>
<link rel="stylesheet" type="text/css" href="css/iemobile.css"/>
<![endif]-->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.easytabs.min.js"></script>
<script type="text/javascript" src="js/respond.min.js"></script>
<script type="text/javascript" src="js/jquery.prettyPhoto.js"></script>
<script type="text/javascript" src="js/jquery.isotope.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/jquery-ui-map.js"></script>
<script type="text/javascript" src="js/jquery.carouFredSel.js"></script>
<script type="text/javascript" src="js/plugins.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- Container -->
<section id="container">
<!-- Header -->
<header>
<!-- Logo -->
<div id="logo">
<h2>ANTHONY FRANK</h2>
<h4>GRAPHIC & WEB DESIGNER</h4>
</div>
<!-- /Logo -->
<!-- Social Icons -->
<ul class="socialicons">
<li class="socials-text">Social Profiles</li>
<li><a href="https://www.facebook.com/profile.php?id=100004930966583" class="transition">*</a></li>
<li><a href="https://twitter.com/afrank84" class="transition">,</a></li>
<!--<<li><a href="#" class="transition">-</a></li> -->
<!--<li><a href="#" class="transition">1</a></li> -->
</ul>
<!-- /Social Icons -->
</header>
<!-- /Header -->
<!-- Content -->
<section id="content" >
<!-- Profile -->
<div id="profile">
<!-- About section -->
<div class="about">
<div class="photo-inner">
<ul>
<li><img src="images/frank_clear.png" height="186" width="153" /></li>
<li><img src="images/frank_clear-1.jpg" height="186" width="153" /></li>
</ul>
</div>
<h1>ANTHONY FRANK</h1>
<!--
<div id="cbp-qtrotator" class="cbp-qtrotator">
<div class="cbp-qtcontent current">
<h3>GRAPHIC & WEB DESIGNER</h3>
</div>
<div class="cbp-qtcontent">
<h3>Analytics Specialist</h3>
</div>
<div class="cbp-qtcontent">
<h3>SEO Engineer</h3>
</div>
<div class="cbp-qtcontent">
<h3>SOCIAL MEDIA SPECIALIST</h3>
</div>
</div>
-->
<!--<p class="personal_info">
I like to make cool and creative designs. My design stash is always full of refreshing ideas.
Feel free to take a look around my Vcard.</p>-->
<p class="personal_info">
I leverage technology in order to work remotely and live an independent and nomadic lifestyle traveling
the world with my wife and children...
</p>
</div>
<!-- /About section -->
<!-- Personal info section -->
<ul class="personal-info">
<li><label>Status</label><span>Digital Nomad</span></li>
<li><label>Birthday</label><span>September 18, 1985</span></li>
<li><label>Location</label><span>Melrose Fl</span></li>
<li><label>Email</label><span class="word-wrap">[email protected]</span></li>
<!--<li><label>Phone</label><span>+123 456 789 111</span></li>-->
<li><label>Website</label><span class="word-wrap"><a href="#">www.AnthonyFrank.me</a></span></li>
<li><label>Blog</label><span>Coming Soon...</span></li>
</ul>
<!-- /Personal info section -->
</div>
<!-- /Profile -->
<!-- Menu -->
<nav class="menu">
<ul class="tabs">
<li class="tmenu"><a href="#profile" class="tab-profile"><i>C</i>Profile</a></li>
<li class="tmenu"><a href="#resume"><i>:</i>Resume</a></li>
<li class="tmenu"><a href="#portfolio"><i>8</i>Portfolio</a></li>
<li class="tmenu"><a href="#contact"><i>!</i>Contact</a></li>
</ul>
<a class="prev" id="menu-prev" href="#"></a>
<a class="next" id="menu-next" href="#"></a>
</nav>
<!-- /Menu -->
<!-- Resume -->
<section id="resume">
<div class="timeline-section">
<!-- Timeline for Employment -->
<h3 class="main-heading">Employment</h3>
<ul class="timeline">
<li>
<div class="timelineUnit">
<h4>Owner<span class="timelineDate">2009 - Present</span></h4>
<h5>Code This Project</h5>
<p>I sell college help material and tutorials to students for computer programming, web development, and database management courses. My digital products range from code snippets to full CMS systems. I also use this company to launch my other SaaS prototypes for outside emerging technology companies.</p>
</div>
</li>
<li>
<div class="timelineUnit">
<h4>Freelancer<span class="timelineDate">2009 - Present</span></h4>
<h5>Changes Per Contract</h5>
<p>I solve problems with digital solutions that work, and look pretty. Sometimes I am a Web Designer, Graphic Designer, Video Editor, or Programmer. The end job is simple, solve a need, make it look good. </p>
</div>
</li>
<li>
<div class="timelineUnit">
<h4>Asset Protection<span class="timelineDate">2008 - 2009</span></h4>
<h5>Walmart </h5>
<p>I worked as undercover security for the tougher parts of an inner city store. I did a lot fighting and detaining of shoplifters, trespassers, drug dealers, and other riff raff that came into my store. Probably would have been better off just going into M.M.A. (Mixed Martial Arts) or doing the local cage fights for quick cash. At least the job was interesting and the fighting kept me fit. </p>
</div>
</li>
<li>
<div class="timelineUnit">
<h4>Infantry Rifleman<span class="timelineDate">2004 - 2008</span></h4>
<h5>United States Marine Corps</h5>
<p>I served 3 combat tours in 4 years. Lost many friends and learned many lessons, which have helped develop my character into the person I am today. I apply these lessons and values not only to my business practices but also every facet of my life. However, there are few challenges left in this world that will ever come close to my time served in the Marines.</p>
</div>
</li>
<div class="clear"></div>
</ul>
<!-- /Timeline for Employment -->
<!-- Timeline for Education -->
<h3 class="main-heading">Education</h3>
<ul class="timeline">
<li>
<div class="timelineUnit">
<h4>B.A.S. Information Technology Management<span class="timelineDate">2011 - 2015</span></h4>
<h5>Florida State College at Jacksonville</h5>
<p>Graduated top of my class as <i>Summa Cum Laude</i>.</p>
</div>
</li>
<li>
<div class="timelineUnit">
<h4>A.S. Information Technology <span class="timelineDate">2009 - 2011</span></h4>
<h5>Florida State College at Jacksonville</h5>
<p>Graduated top of my class with <i>High Honors</i>.</p>
</div>
</li>
<div class="clear"></div>
</ul>
<!-- /Timeline for Education -->
<!-- Timeline for Certifications & Continued Education -->
<h3 class="main-heading">Certificates</h3>
<ul class="timeline">
<li>
<div class="timelineUnit">
<h4>Information Analysis<span class="timelineDate">2015</span></h4>
<h5>Florida State College at Jacksonville</h5>
</div>
</li>
<li>
<div class="timelineUnit">
<h4>Web Development Specialist<span class="timelineDate">2015</span></h4>
<h5>Florida State College at Jacksonville</h5>
</div>
</li>
<li>
<div class="timelineUnit">
<h4>Customer Support Specialist<span class="timelineDate">2010</span></h4>
<h5>Florida State College at Jacksonville</h5>
</div>
</li>
<li>
<div class="timelineUnit">
<h4>Computer Programming Specialist<span class="timelineDate">2012</span></h4>
<h5>Florida State College at Jacksonville</h5>
</div>
</li>
<div class="clear"></div>
</ul>
<!-- /Timeline for Education -->
</div>
<div class="skills-section">
<!-- Skills -->
<h3 class="main-heading">Languages & Frameworks</h3>
<ul class="skills">
<li>
<h4>HTML 5</h4>
<div class="rating" data-rat="7"></div>
</li>
<li>
<h4>CSS 3</h4>
<div class="rating" data-rat="6"></div>
</li>
<li>
<h4>JavaScript</h4>
<div class="rating" data-rat="5"></div>
</li>
<li>
<h4>Jquery</h4>
<div class="rating" data-rat="3"></div>
</li>
<li>
<h4>SASS</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>LESS</h4>
<div class="rating" data-rat="3"></div>
</li>
<li>
<h4>Bootstrap 3</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Pure CSS</h4>
<div class="rating" data-rat="5"></div>
</li>
<li>
<h4>Python</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Java</h4>
<div class="rating" data-rat="3"></div>
</li>
<li>
<h4>MySQL</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Ruby</h4>
<div class="rating" data-rat="3"></div>
</li>
</ul>
<h3 class="main-heading">Software Used</h3>
<ul class="skills">
<li>
<h4>Photoshop CC</h4>
<div class="rating" data-rat="5"></div>
</li>
<li>
<h4>Priemer CC</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Muse CC</h4>
<div class="rating" data-rat="3"></div>
</li>
<li>
<h4>After Effects CC</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Filezilla</h4>
<div class="rating" data-rat="6"></div>
</li>
<li>
<h4>Sublime Text 3</h4>
<div class="rating" data-rat="6"></div>
</li>
<li>
<h4>Notepad ++</h4>
<div class="rating" data-rat="7"></div>
</li>
</ul>
<h3 class="main-heading">Abilities</h3>
<ul class="skills">
<li>
<h4>Graphic Design</h4>
<div class="rating" data-rat="6"></div>
</li>
<li>
<h4>Web Design</h4>
<div class="rating" data-rat="7"></div>
</li>
<li>
<h4>Print Design</h4>
<div class="rating" data-rat="6"></div>
</li>
<li>
<h4>SEO Specialist</h4>
<div class="rating" data-rat="7"></div>
</li>
<li>
<h4>Analytics</h4>
<div class="rating" data-rat="6"></div>
</li>
<li>
<h4>Email Campaigns</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Social Media Campaigns</h4>
<div class="rating" data-rat="5"></div>
</li>
<li>
<h4>Video Editing</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Video Animation</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Brand Identity</h4>
<div class="rating" data-rat="4"></div>
</li>
<li>
<h4>Wordpress Development</h4>
<div class="rating" data-rat="5"></div>
</li>
</ul>
<!-- /Skills -->
</div>
<div class="clear"></div>
<a href="#" class="button transition">Download resume as PDF format</a>
</section>
<!-- /Resume -->
<!-- Portfolio -->
<section id="portfolio">
<ul class="cats-filter" id="portfolio-filter">
<li><a href="" class="current transition" data-filter="*">All</a></li>
<li><a href="" class="transition" data-filter=".webdesign">WebDesign</a></li>
<li><a href="" class="transition" data-filter=".photoghraphy">Photoghraphy</a></li>
<li><a href="" class="transition" data-filter=".illustration">Illustration</a></li>
<li><a href="" class="transition" data-filter=".print">Print</a></li>
<li><a href="" class="transition" data-filter=".animation">Animation</a></li>
<li><a href="" class="transition" data-filter=".design">Graphic Design</a></li>
</ul>
<div class="extra-text">Some of the projects i'm proud with</div>
<ul id="portfolio-list">
<!--<li class="illustration print">
<a href="portfolio/1.jpg" rel="portfolio[1]" title="Lorem ipsum dolor sit amet, consectetur adipiscing Vivamus sit amet ligula non lectus.consectetur adipiscingVivamus sit amet" class="folio">
<img src="portfolio/1-thumb.jpg" alt="Image Title">
<h2 class="title">Hello Goodbye</h2>
<span class="categorie">Print / Illustration</span>
</a>
<a href="portfolio/4.jpg" rel="portfolio[1]" title="This is the description" class="folio hidden"></a>
<a href="portfolio/4.jpg" rel="portfolio[1]" title="This is the description" class="folio hidden"></a>
<a href="portfolio/4.jpg" rel="portfolio[1]" title="This is the description" class="folio hidden"></a>
<a href="portfolio/4.jpg" rel="portfolio[1]" title="This is the description" class="folio hidden"></a>
<a href="portfolio/4.jpg" rel="portfolio[1]" title="This is the description" class="folio hidden"></a>
<a href="portfolio/4.jpg" rel="portfolio[1]" title="This is the description" class="folio hidden"></a>
</li>-->
<li class="webdesign animation">
<a href="https://www.youtube.com/watch?v=JR0GK21FIa0" rel="portfolio" title="Created for a client as a final college project. I created this as a presentation instead of a powerpoint, thought it was a better way to relay information.
All artwork, design, and website was created by me. Video was also created by me as well." class="folio">
<img src="portfolio/capstone_ss_thumb.png" alt="" >
<h2 class="title">Capstone</h2>
<span class="categorie">Video / Website</span>
</a>
</li>
<li class="design">
<a href="portfolio/knotify-cellphone.png" rel="portfolio" class="folio">
<img src="portfolio/knotify_ss_thumb.png" alt="" >
<h2 class="title">Knotify Mobile Development</h2>
<span class="categorie">Graphic Design / UX Design</span>
</a>
</li>
<li class="animation">
<a href="https://www.youtube.com/watch?v=XfkbqfO8Ta8" rel="portfolio" title="Created as a slideshow of imagery for
our mission trip to Hamilton Canada." class="folio">
<img src="portfolio/hamilton_ss_thumb2.png" alt="" >
<h2 class="title">Hamilton Canada</h2>
<span class="categorie">Video</span>
</a>
</li>
<li class="design">
<a href="portfolio/kh-logo300x300.png" rel="portfolio" class="folio">
<img src="portfolio/kh-logo300x300.png" alt="" >
<h2 class="title">Keystone Heights Logo</h2>
<span class="categorie">Graphic Design</span>
</a>
</li>
<li class="illustration print">
<a href="portfolio/09232014_vendors_needed_frank.png" rel="portfolio[1]" title="Was asked a couple times a month to create local advertisements for Keystone Heights Farmer's Market." class="folio">
<img src="portfolio/khfm_thumb.png" alt="Image Title">
<h2 class="title">KHFM Advertisement</h2>
<span class="categorie">Print / Illustration</span>
</a>
<a href="portfolio/khfm-ad3_75x5in.png" rel="portfolio[1]" title="Ad before print." class="folio hidden"></a>
<a href="portfolio/p2.png" rel="portfolio[1]" title="An actual print from the local newspaper." class="folio hidden"></a>
</li>
<li class="webdesign animation">
<a href="portfolio/Responsive-showcase-presentation.png" rel="portfolio" title="." class="folio">
<img src="portfolio/Responsive-showcase-presentation.png" alt="" >
<h2 class="title">Mockup</h2>
<span class="categorie">Graphic Design</span>
</a>
</li>
<li class="webdesign">
<a href="portfolio/ss_saltyandsoulful.png" rel="portfolio" title="." class="folio">
<img src="portfolio/ss_saltyandsoulful.png" alt="" >
<h2 class="title">Salty & Soulful Jewelry</h2>
<span class="categorie">Web Design</span>
</a>
</li>
<!--
<li class="animation">
<a href="portfolio/5.jpg" rel="portfolio" class="folio">
<img src="portfolio/5-thumb.jpg" alt="" >
<h2 class="title">Come together</h2>
<span class="categorie">Animation</span>
</a>
</li>
-->
<!--
<li class="webdesign print">
<a href="portfolio/6.jpg" rel="portfolio" class="folio">
<img src="portfolio/6-thumb.jpg" alt="" >
<h2 class="title">The yellow</h2>
<span class="categorie">Webdesign / Print</span>
</a>
</li>
-->
<li class="design">
<a href="portfolio/Unique_Notations_Union_Street_8p5x11in.png" rel="portfolio" class="folio">
<img src="portfolio/unique_ss_thumb.png" alt="" >
<h2 class="title">Unique Notions</h2>
<span class="categorie">Graphic Design / Print</span>
</a>
</li>
<!--
<li class="illustration">
<a href="portfolio/8.jpg" rel="portfolio" class="folio">
<img src="portfolio/8-thumb.jpg" alt="" >
<h2 class="title">Revolution</h2>
<span class="categorie">Illustration</span>
</a>
</li>
-->
</ul>
</section>
<!-- /Portfolio -->
<!-- Contact -->
<section id="contact">
<div id="map"><!-- Replace Lat & Long in "custom.js". It can be found in URL of google maps. --></div>
<!-- Contact Info -->
<div class="contact-info">
<h3 class="main-heading"><span>Contact info</span></h3>
<ul>
<li>Location: Melrose, FL </li>
<li>Email: [email protected]</li>
<li>Website: www.AnthonyFrank.me</li>
<!--<li><img src="images/Facebook-icon_32x32_flat.png"></li>-->
<!--<li>Phone: +123 456 789 111</li>-->
</ul>
</div>
<!-- /Contact Info -->
<!-- Contact Form -->
<div class="contact-form">
<!-- This Code has been replaced by Jotform -frank
<h3 class="main-heading"><span>Let's keep in touch</span></h3>
<div id="contact-status"></div>
<form action="http://formspree.io/[email protected]" id="contactform">
<p>
<label for="name">Your Name</label>
<input type="text" name="name" class="input" >
</p>
<p>
<label for="email">Your Email</label>
<input type="text" name="email" class="input">
</p>
<p>
<label for="message">Your Message</label>
<textarea name="message" cols="88" rows="6" class="textarea" ></textarea>
</p>
<input type="submit" name="submit" value="Send your message" class="button transition">
</form>
-->
<form class="form-horizontal" role="form" method="post" action="index.php">
<div class="form-group">
<label for="name"><p><h4>Name</h4></p></label>
<div class="col-sm-10">
<input type="text" class="input" id="name" name="name" placeholder="First & Last Name" value="<?php echo htmlspecialchars($_POST['name']); ?>">
<?php echo "<p class='text-danger'>$errName</p>";?>
</div>
</div>
<div class="form-group">
<label for="email"><p><h4>Email</h4></p></label>
<div class="col-sm-10">
<input type="email" class="input" id="email" name="email" placeholder="[email protected]" value="<?php echo htmlspecialchars($_POST['email']); ?>">
<?php echo "<p class='text-danger'>$errEmail</p>";?>
</div>
</div>
<div class="form-group">
<label for="message"><p><h4 class="form_frank">Message</h4></p></label>
<div class="col-sm-10">
<textarea rows="4" name="message"><?php echo htmlspecialchars($_POST['message']);?></textarea>
<?php echo "<p class='text-danger'>$errMessage</p>";?>
</div>
</div>
<div class="form-group">
<label for="human"><p><h4>2 + 3 = ?</h4></p></label>
<div class="col-sm-10">
<input type="text" class="input" id="human" name="human" placeholder="Your Answer">
<?php echo "<p class='text-danger'>$errHuman</p>";?>
</div>
</div>
<div class="form-group">
<div class="col-sm-10 col-sm-offset-2">
<input id="submit" name="submit" type="submit" value="Send" class="button transition">
</div>
</div>
<div class="form-group">
<div class="col-sm-10 col-sm-offset-2">
<?php echo $result; ?>
</div>
</div>
</form>
</div>
<!-- /Contact Form -->
</section>
<!-- /contact -->
</section>
<!-- /Content -->
<!-- Footer -->
<footer>
<div class="copyright">Copyright © 2015 Anthony Frank</div>
</footer>
<!-- /Footer -->
</section>
<!-- /Container -->
<!-- Loading Scripts -->
<script type="text/javascript">
$(document).ready(function() {
//Quotes rotator
var divs = $('.cbp-qtcontent');
function fade() {
var current = $('.current');
var currentIndex = divs.index(current),
nextIndex = currentIndex + 1;
if (nextIndex >= divs.length) {
nextIndex = 0;
}
var next = divs.eq(nextIndex);
next.stop().fadeIn(1000, function() {
$(this).addClass('current');
});
current.stop().fadeOut(1000, function() {
$(this).removeClass('current');
_startProgress()
setTimeout(fade, 3500);
});
}
function _startProgress(){
$(".cbp-qtprogress").removeAttr('style');
$(".cbp-qtprogress").animate({
width:"800px",
} , 3500);
}
_startProgress()
setTimeout(fade, 3500);
});
</script>
</body>
</html>