-
Notifications
You must be signed in to change notification settings - Fork 1
/
confession_form.html
132 lines (116 loc) · 4.53 KB
/
confession_form.html
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
!DOCTYPE HTML>
<!--
Landed by Pixelarity
pixelarity.com | [email protected]
License: pixelarity.com/license
-->
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-27JZVKW3SB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-27JZVKW3SB');
</script>
<title>Morris Hoeft Group</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1 id="logo"><a href="index.html">Morris Hoeft Group</a></h1>
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="capabilities.html">Capabilities</a></li>
<li><a href="cashmere_project.html">Cashmere Project</a></li> <!-- New tab added here -->
<li><a href="elements.html">Contact Us</a></li>
<!-- <li><a href="#" class="button primary">Sign Up</a></li> -->
</ul>
</nav>
</header>
<!-- Main -->
<div id="main" class="wrapper style1">
<div class="container">
<header class="major">
<h2>Cashmere Confession</h2>
</header>
<!-- Form -->
<section>
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="96431bd4-e89f-4e35-aff1-057a3c3d3e72">
<input type="hidden" name="redirect" value="https://morrishoeft.com/thank_you.html">
<input type="hidden" name="from_name" value="Confession form">
<div class="row gtr-uniform gtr-50">
<div class="row gtr-uniform gtr-50">
<div class="col-6 col-12-xsmall">
<label for="name">Name <span style="color: darkred;">*</span></label>
<input type="text" name="name" id="name" value="" placeholder="Name" required />
</div>
<div class="col-6 col-12-xsmall">
<label for="email">Email <span style="color: darkred;">*</span></label>
<input type="email" name="email" id="email" value="" placeholder="Email" required />
</div>
<div class="col-12">
<label for="message">Your Cashmere Confession</label>
<textarea name="message" id="message" placeholder="What would you tell your younger self?" rows="6" required></textarea>
</div>
<div class="col-12">
<label for="guest-podcast">Would you like to be considered to be a guest on the <i>is that cashmere</i> podcast?</label>
<style>
.select-container {
display: flex;
justify-content: center; /* Centers the select element horizontally */
}
#guest-podcast {
text-align: center;
}
</style>
<select name="guest-podcast" id="guest-podcast" required>
<option value="">Select an option</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" value="Send Message" class="primary" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
</div>
</div>
<!-- Legend for Required Fields -->
<div style="margin-top: 10px; font-size: 14px;">
<span style="color: darkred;">*</span> = Required
</div>
</form>
</section>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="https://www.linkedin.com/company/morris-hoeft-group/" class="icon brands alt fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
<li><a href="https://www.instagram.com/morrishoeftgroup/" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
</ul>
<ul class="copyright">
<li>© Morris Hoeft Group LLC.</li>
</ul>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>