-
Notifications
You must be signed in to change notification settings - Fork 5
/
subscribe.html
68 lines (65 loc) · 2.63 KB
/
subscribe.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
---
layout: default
title: Subscribe
description: Interested in staying up to date with IEEE-HKN NUS?<br>Subscribe to our newsletter and be notified whenever we make a new post!
---
<section class="wrapper style5">
<div class="inner">
<!-- Add new section here -->
<section>
<h4>Subscribe To Our Newsletter</h4>
<form method="post" action="https://formspree.io/[email protected]">
<div class="row gtr-uniform">
<div class="col-6 col-12-xsmall">
<input type="text" name="name" id="name" value="" placeholder="Name" required/>
</div>
<div class="col-6 col-12-xsmall">
<input type="email" name="email" id="email" value="" placeholder="Email" required/>
</div>
<div class="col-12">
<select name="category" required>
<option value="">I am...</option>
<option value="NUS Student">A student at NUS</option>
<option value="NUS Student">A student at another tertiary institute</option>
<option value="NUS Staff">A staff at NUS</option>
<option value="NUS Staff">A staff at another tertiary institute</option>
<option value="Not Affliated">Not affiliated with a tertiary institute</option>
</select>
</div>
<!-- <div class="col-4 col-12-small">
<input type="radio" id="student" name="designation" checked required>
<label for="student">Student</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="staff" name="designation">
<label for="staff">Staff</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="public" name="designation">
<label for="public">Public</label>
</div> -->
<!-- <div class="col-6 col-12-small">
<input type="checkbox" id="copy" name="copy" checked>
<label for="copy">Email me a copy</label>
</div> -->
<div class="col-6 col-12">
<input type="checkbox" id="agree" name="agree" required>
<label for="agree">I agree to disclose my name and email to IEEE-HKN NUS so that I may receive communication and newsletters from IEEE-HKN NUS</label>
</div>
<!-- <div class="col-12">
<textarea name="subject" id="subject" placeholder="Enter your subject" rows="1" required></textarea>
</div>
<div class="col-12">
<textarea name="message" id="message" placeholder="Enter your message" rows="6" required></textarea>
</div> -->
<div class="col-12">
<ul class="actions">
<li><input type="submit" value="Subscribe" class="primary" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
</div>
</div>
</form>
</section>
</div>
</section>