-
Notifications
You must be signed in to change notification settings - Fork 3
/
supply-paper.html
96 lines (70 loc) · 3.07 KB
/
supply-paper.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
---
layout: supply
---
<form id="submission">
<h1>Update Request</h1>
<label for="status">Update Status</label>
<select name="status" id="status" class="dd">
<option value="Done">Done</option>
<option value="In progress">In progress</option>
</select>
<br><br>
<label>Supply by
<p><input required="required" class="_oab_form" type="text" id="supply-by" placeholder="OAB"></p>
</label>
<label>Notes
<p><input required="required" class="_oab_form" type="text" id="supply-notes" placeholder="Wrong DOI"></p>
</label>
<input class="_oab_button" href="/thanks" id="submit" aria-label="submit" style="min-width:150px;" type="submit" value="Submit Request">
</form>
<h1>Requestor Information (readonly)</h1>
<label>Institutional Email Address
<p><input required="required" class="_oab_form" type="email" id="email" placeholder="e.g. your.email@institution.edu" readonly></p>
</label>
<label>Full Name
<p><input required="required" class="_oab_form" type="text" id="name" placeholder="e.g. Carla Hayden" readonly></p>
</label>
<label>Library Name
<p><input required="required" class="_oab_form" type="text" id="organization" placeholder="e.g. Harvard University Library" readonly></p>
</label>
<h1>Paper Information (readonly)</h1>
<label>Paper Title
<p><input required="required" class="_oab_form" type="text" id="atitle" placeholder="e.g Evolutionary persistence of DNA methylation for millions of years" readonly></p>
</label>
<label>Journal Title
<p><input required="required" class="_oab_form" type="text" id="title" placeholder="e.g Nature" readonly></p>
</label>
<label>DOI
<p><input class="_oab_form" type="text" id="doi" placeholder="e.g 10.1126/scitranslmed.3008973" readonly></p>
</label>
<label>Authors
<p><input class="_oab_form" type="text" id="aulast" placeholder="e.g Charles Darwin"></p>
</label>
<label>Year Published
<p><input required="required"class="_oab_form" type="text" id="year" placeholder="e.g 1992" readonly></p>
</label>
<label>Volume
<p><input class="_oab_form" type="text" id="volume" placeholder="e.g 37" readonly></p>
</label>
<label>Issue
<p><input class="_oab_form" type="text" id="issue" placeholder="e.g 1" readonly></p>
</label>
<label>Page
<p><input class="_oab_form" type="text" id="pages" placeholder="e.g 355-365" readonly></p>
</label>
<h1 class="form-section">About the request (readonly)</h1>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date suggested required pattern -->
<label for="needed-by">When do you need this by?</label>
<p><input class="_oab_form" type="date" id="needed-by" min='1899-01-01' max='2022-01-01' required pattern="\d{4}-\d{2}-\d{2}" placeholder="yyyy/mm/dd" readonly></p>
<label>Your Reference Number (if any)
<p><input class="_oab_form" type="text" id="reference" placeholder="e.g. 02397133-002" readonly></p>
</label>
<label>Notes
<p><input class="_oab_form" type="text" id="other" placeholder="e.g. Please process quickly!" readonly></p>
</label>
<script>
sid = 'AKfycbwFA_R-0gjzVS9029ByVpduCYJbHLH0ujstNng1aNnRogw1htU';
url = 'https://api.openaccessbutton.org/ill/collect/' + sid;
fields = [];
</script>
{% include form.html %}