forked from interglobalvision/niceshirtfilms-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-sign-up.php
executable file
·92 lines (59 loc) · 2.05 KB
/
page-sign-up.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
<?php
get_header();
?>
<!-- main content -->
<main id="main-content">
<?php
if( have_posts() ) {
while( have_posts() ) {
the_post();
$meta = get_post_meta($post->ID);
?>
<article id="page" <?php post_class(); ?>>
<header class="page-header u-cf">
<div class="col col2 colpad1left">
<h3><?php the_title(); ?></h3>
</div>
</header>
<form id="subForm" action="http://modernactivity.createsend.com/t/y/s/fkiuil/" method="post">
<section class="row u-cf">
<div class="col col1">
<label for="fieldName">First name</label>
<label for="fieldckikjh">Last name</label>
<label for="fieldEmail">Email address*</label>
<label for="fieldckikjk">What is your favourite ad right now?</label>
<label>
* = mandatory field for submission
</label>
</div>
<div class="col col2">
<label for="fieldName" class="mobile-label">First name</label>
<input id="fieldName" name="cm-name" type="text" />
<label for="fieldckikjh" class="mobile-label">Last name</label>
<input id="fieldckikjh" name="cm-f-ckikjh" type="text" />
<label for="fieldEmail" class="mobile-label">Email address*</label>
<input id="fieldEmail" name="cm-fkiuil-fkiuil" required="" type="email" />
<label for="fieldckikjk" class="mobile-label">What is your favourite ad right now?</label>
<input id="fieldckikjk" name="cm-f-ckikjk" type="text" />
<button type="submit">Submit Form</button>
<label class="mobile-label">
* = mandatory field for submission
</label>
</div>
</section>
</form>
</article>
<?php
}
} else {
?>
<section class="error">
<article class="u-alert"><?php _e('Sorry, nothing matched your criteria :{'); ?></article>
</section>
<?php
} ?>
<!-- end main-content -->
</main>
<?php
get_footer();
?>