Skip to content

Commit

Permalink
Merge pull request #1063 from MITLibraries/etd-602-ux-review-of-proquest
Browse files Browse the repository at this point in the history
Move descriptive text of ProQuest opt-in outside of field label
  • Loading branch information
jazairi authored Oct 31, 2022
2 parents 0d7f9b4 + 543418b commit 295f266
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
6 changes: 6 additions & 0 deletions app/assets/stylesheets/thing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,12 @@ form.simple_form {
margin-bottom: 1rem;
font-weight: $fw-normal;
}
.opt-border {
display: block;
border: .1px dotted;
margin-top: 1rem;
margin-bottom: 1rem;
}
.radio.field-subitem {
margin-top: 1rem;
}
Expand Down
21 changes: 13 additions & 8 deletions app/views/thesis/_author_fields.html.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<fieldset class="proquest">
<legend>Consent to send thesis to ProQuest</legend>
<%= f.input :proquest_allowed, as: :radio_buttons,
collection: [['Yes', true], ['No', false]],
required: true,
validate_presence: true,
label: "We are conducting a pilot program to provide additional open access to MIT theses through <a href='http://libguides.mit.edu/dissertations'>ProQuest Dissertation & Theses Global</a> (PQDT). The aim is to make theses more visible and discoverable.<br><br>There is no cost to you and your thesis will not be sent to ProQuest until it is published by MIT. See <a href='https://about.proquest.com/en/dissertations/proquest-dissertations-frequently-asked-questions/proquest-dissertations-authors-frequently-asked-questions/'>PQDT's Author Dissertations FAQs</a> for more information about participating.<br><br>--<br><br>I would like the full-text of my thesis to be made openly available in ProQuest Dissertation & Theses Global.".html_safe %>
</fieldset>
<h4>Consent to send thesis to ProQuest</h4>
<div class="proquest">
<p>We are conducting a pilot program to provide additional open access to MIT theses through <a href='http://libguides.mit.edu/dissertations'>ProQuest Dissertation & Theses Global</a> (PQDT). The aim is to make theses more visible and discoverable.</p>
<p>There is no cost to you and your thesis will not be sent to ProQuest until it is published by MIT. See <a href='https://about.proquest.com/en/dissertations/proquest-dissertations-frequently-asked-questions/proquest-dissertations-authors-frequently-asked-questions/'>PQDT's Author Dissertations FAQs</a> for more information about participating.</p>
<fieldset>
<legend>ProQuest consent *</legend>
<%= f.input :proquest_allowed, as: :radio_buttons,
collection: [['Yes', true], ['No', false]],
required: true,
validate_presence: true,
label: "I would like the full-text of my thesis to be made openly available in ProQuest Dissertation & Theses Global.".html_safe %>
</fieldset>
</div>

0 comments on commit 295f266

Please sign in to comment.