Skip to content

Commit

Permalink
[DUOS-2863] Add help text to Contact Us form (#2446)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarohinadkarni authored Jan 30, 2024
1 parent 43e1100 commit c0a4b7a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/components/modals/SupportRequestModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { div, form, input, label, textarea, hh, h, select, span, option, section, button, p } from 'react-hyperscript-helpers';
import { div, form, input, label, textarea, hh, h, select, span, option, section, button, p, a } from 'react-hyperscript-helpers';
import { Support} from '../../libs/ajax';
import { Storage } from '../../libs/storage';
import { Notifications, isEmailAddress } from '../../libs/utils';
Expand Down Expand Up @@ -264,6 +264,20 @@ export const SupportRequestModal = hh(
outline: '0',
},
}, [
div({className: 'default-color', style: { fontStyle: 'italic', fontSize: '13px' }}, [
p(['Having issues accessing data you were already approved to use?',
div({style: { fontStyle: 'normal'}}, [
'Please contact the dataset\'s Data Custodian listed in the DUOS ',
a({ href: '/datalibrary' }, 'Data Library'),'.'
])])
]),
div({className: 'default-color', style: { fontStyle: 'italic', fontSize: '13px' }}, [
p(['Want to ask the data access committee(s) about your requests\' expected turnaround time?',
div({style: { fontStyle: 'normal'}}, [
'Please contact the dataset\'s Data Access Committee (DAC) listed in the DUOS ',
a({ href: '/datalibrary' }, 'Data Library'),'.'
])])
]),
form({
className: 'form-horizontal css-form',
name: 'zendeskTicketForm',
Expand Down

0 comments on commit c0a4b7a

Please sign in to comment.