Skip to content

Commit 5188bdf

Browse files
committed
Several widgets in session request form require javascript. Prevent usage of page without javascript. Fixes ietf-tools#1767. Commit ready for merge.
- Legacy-Id: 13554
1 parent 1158a4d commit 5188bdf

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

ietf/secr/templates/sreq/edit.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424

2525
{% block content %}
2626

27+
<noscript>
28+
<div style="position: fixed; top: 0px; left: 0px; z-index: 3000;
29+
height: 100%; width: 100%; background-color: #FFFFFF">
30+
<p style="margin-left: 10px">This page requires JavaScript.</p>
31+
</div>
32+
</noscript>
33+
2734
<div class="module interim-container">
2835
<h2>IETF {{ meeting.number }}: Edit Session Request</h2>
2936
<div class="inline-related">

ietf/secr/templates/sreq/new.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424

2525
{% block content %}
2626

27+
<noscript>
28+
<div style="position: fixed; top: 0px; left: 0px; z-index: 3000;
29+
height: 100%; width: 100%; background-color: #FFFFFF">
30+
<p style="margin-left: 10px">This page requires JavaScript.</p>
31+
</div>
32+
</noscript>
33+
2734
<div class="module interim-container">
2835
<h2>IETF {{ meeting.number }}: New Session Request</h2>
2936
<div class="inline-related">

0 commit comments

Comments
 (0)