Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
2e3a0c4d
Commit
2e3a0c4d
authored
Sep 17, 2013
by
Adam Palay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add labels and aria-required attributes to help-modal inputs
parent
c0fec1b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
lms/templates/help_modal.html
+8
-8
No files found.
lms/templates/help_modal.html
View file @
2e3a0c4d
...
...
@@ -60,16 +60,16 @@ discussion_link = get_discussion_link(course) if course else None
<form
id=
"feedback_form"
class=
"feedback_form"
method=
"post"
data-remote=
"true"
action=
"/submit_feedback"
>
<div
id=
"feedback_error"
class=
"modal-form-error"
tabindex=
"-1"
></div>
% if not user.is_authenticated():
<label
data-field=
"name"
>
${_('Name*')}
</label>
<input
name=
"name"
type=
"text"
>
<label
data-field=
"email"
>
${_('E-mail*')}
</label>
<input
name=
"email"
type=
"text"
>
<label
data-field=
"name"
for=
"feedback_form_name"
>
${_('Name*')}
</label>
<input
name=
"name"
type=
"text"
id=
"feedback_form_email"
aria-required=
"true"
>
<label
data-field=
"email"
for=
"feedback_form_email"
>
${_('E-mail*')}
</label>
<input
name=
"email"
type=
"text"
id=
"feedback_form_email"
aria-required=
"true"
>
% endif
<label
data-field=
"subject"
>
${_('Briefly describe your issue*')}
</label>
<input
name=
"subject"
type=
"text"
>
<label
data-field=
"details"
>
${_('Tell us the details*')}
<label
data-field=
"subject"
for=
"feedback_form_subject"
>
${_('Briefly describe your issue*')}
</label>
<input
name=
"subject"
type=
"text"
id=
"feedback_form_subject"
aria-required=
"true"
>
<label
data-field=
"details"
for=
"feedback_form_details"
>
${_('Tell us the details*')}
<span
class=
"tip"
>
${_('Include error messages, steps which lead to the issue, etc')}
</span></label>
<textarea
name=
"details"
></textarea>
<textarea
name=
"details"
id=
"feedback_form_details"
aria-required=
"true"
></textarea>
<input
name=
"issue_type"
type=
"hidden"
>
% if course:
<input
name=
"course_id"
type=
"hidden"
value=
"${course.id | h}"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment