Skip to content

Commit 1b86194

Browse files
committed
Add volunteer call
1 parent 7a6b6b3 commit 1b86194

File tree

2 files changed

+49
-14
lines changed

2 files changed

+49
-14
lines changed

events/smkmeetup/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,17 @@ <h3>Sponsors</h3>
301301
<a href="/sponsor">sponsorship page</a>.
302302
</p>
303303

304+
<a name="sponsors"></a>
305+
<hr />
306+
307+
<h3>Volunteers</h3>
308+
309+
<p>
310+
This event is all volunteer run. If you're interested in volunteering, please
311+
contact us via the
312+
<a href="/volunteer">volunteer page</a>.
313+
</p>
314+
304315
<a name="what-is-ckeys"></a>
305316
<hr />
306317

volunteer/index.html

Lines changed: 38 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
---
55

66
<section>
7-
<p>We here at ckeys are a 100% volunteer based organization, so to do all that we want to do we need help from people like you! Several things you might do as a volunteer would include:</p>
7+
<p>
8+
We here at ckeys are a 100% volunteer based organization, so to do all that
9+
we want to do we need help from people like you! Several things you might do
10+
as a volunteer would include:
11+
</p>
812

913
<ul>
1014
<li>Helping with the meetup giveaway.</li>
@@ -16,29 +20,49 @@
1620
<li>And more!</li>
1721
</ul>
1822

19-
<p>If you're interested in volunteering,let us know by filling out the form below along with any preferences you might have for duties.</p>
23+
<p>
24+
If you're interested in volunteering, let us know by filling out the form
25+
below along with any preferences you might have for duties.
26+
</p>
2027
</section>
2128

2229
<section>
23-
<form name="volunteer-page" action="/volunteer/" class="form-stacked" netlify-honeypot="bot-field" netlify>
30+
<form
31+
name="volunteer-page"
32+
action="/volunteer/"
33+
class="form-stacked"
34+
netlify-honeypot="bot-field"
35+
netlify
36+
>
2437
<div class="row uniform">
2538
<div class="6u 12u$(xsmall)">
2639
<input type="text" name="name" id="name" value="" placeholder="Name" />
2740
</div>
2841
<div class="6u$ 12u$(xsmall)">
29-
<input type="email" name="email" id="email" value="" placeholder="Email" />
42+
<input
43+
type="email"
44+
name="email"
45+
id="email"
46+
value=""
47+
placeholder="Email"
48+
/>
3049
</div>
3150
<div class="6u 12u$(small)">
32-
<input type="checkbox" id="volunteer" name="volunteer">
51+
<input type="checkbox" id="volunteer" name="volunteer" />
3352
<label for="volunteer">I want to volunteer!</label>
3453
</div>
3554
<div class="6u 12u$(small)">
36-
<input name="bot-field" style="display:none">
37-
<input type="checkbox" id="human" name="human" checked>
55+
<input name="bot-field" style="display:none" />
56+
<input type="checkbox" id="human" name="human" checked />
3857
<label for="human">I am a robot.</label>
3958
</div>
4059
<div class="12u$">
41-
<textarea name="message" id="message" placeholder="Enter your message" rows="6"></textarea>
60+
<textarea
61+
name="message"
62+
id="message"
63+
placeholder="Enter your message"
64+
rows="6"
65+
></textarea>
4266
</div>
4367
<div class="12u$">
4468
<ul class="actions">
@@ -51,10 +75,10 @@
5175
</section>
5276

5377
<script>
54-
window.onload = function() {
55-
const myInput = document.getElementById('message');
56-
myInput.onpaste = function(e) {
57-
e.preventDefault();
58-
}
59-
}
78+
window.onload = function() {
79+
const myInput = document.getElementById("message");
80+
myInput.onpaste = function(e) {
81+
e.preventDefault();
82+
};
83+
};
6084
</script>

0 commit comments

Comments
 (0)