-
Notifications
You must be signed in to change notification settings - Fork 0
/
lead-form.php
88 lines (64 loc) · 2.51 KB
/
lead-form.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
<?php
/**
* Template Name: Lead Form
*
*/
get_header();
?>
<main class="dark-theme">
<section class="generic-hero lead">
<div class="generic-hero-back"></div>
<div class="area flex gap-50 align-center">
<div class="resp-logo">
<img src="<?php echo get_template_directory_uri(); ?>/img/logos/logo-white.svg" />
</div>
<div class="col-half">
<?php if (!is_page('get-started') && !is_page('beta-signup')):?>
<div class="sub-section flex align-center">
<div class="icon small">
<img src="<?php echo get_template_directory_uri(); ?><?php the_field('icon_path')?>" />
</div>
<div class="breadcrumbs">
<a href="<?php echo home_url(); ?>/hypha-labs/">Hypha Labs</a> > Become a Hypha:
</div>
</div>
<?php endif; ?>
<?php if (!is_page('get-started') && !is_page('beta-signup')):?>
<h1 class="title-big">
<?php the_title(); ?>
</h1>
<?php endif; ?>
<?php if (is_page('get-started') || is_page('beta-signup')):?>
<div class="sub-section flex align-center">
<div class="icon small">
<img src="<?php echo get_template_directory_uri(); ?><?php the_field('icon_path')?>" />
</div>
<div class="breadcrumbs">
<h1 class="subtitle light-blu">Beta Signup</h1>
</div>
</div>
<?php endif; ?>
<?php if (is_page('get-started') || is_page('beta-signup')):?>
<h2 class="title-big">
Signup for <br />your Hypha DAO
</h2>
<?php endif; ?>
<?php ?>
<p class="text-20 light-blu">
<?php the_field('header_subtitle_blu'); ?>
</p>
<?php if( get_field('header_subtitle_white') ): ?>
<p>
<?php the_field('header_subtitle_white'); ?>
</p>
<?php endif; ?>
</div>
<div class="col-half">
<?php
include ('incl/mautic-form-dynamic.html') ;
?>
</div>
</div>
</section>
</main>
<?php get_footer(); ?>