-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscribe.html
43 lines (34 loc) · 1.21 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
---
layout: default
title: Subscribe to 52 Papers
body_id: subscribe
---
<div class="container">
<div class="paper-wrapper">
<div class="paper-meta">
<h3>SUBSCRIBE</h3>
<div class="tags">
{% for tag in page.tags %}
<div class="tag {{ tag | downcase | replace: ' ', '-' }}">
{{ tag }}
</div>
{% endfor %}
</div>
</div>
<div class="paper-content">
<h1>Subscribe to 52 Papers</h1>
<section>
<p>Education research articles. Summarised. In your inbox.</p>
<p>It's free!</p>
<form id="subscription-form" novalidate>
<input type="email" id="email" name="email" placeholder="e.g. [email protected]" />
<button type="submit" class="btn-submit">Submit</button>
<div class="messages">
<p class="success"><i class="fas fa-angle-double-right"></i> Success! You've been added to our subscriber list.</p>
<p class="error">Please enter a valid email address</p>
</div>
</form>
<p class="small">We won't use your email for anything else. Only to send you a weekly summary of an education research article.</p>
</section>
</div>
</div>