Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 0214de0

Browse files
committed
Fixed errors in HTML templates.
1 parent a456df7 commit 0214de0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

flask_rp/templates/opresult.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ <h3>User information</h3>
2727
</dl>
2828

2929
{% if check_session_iframe is defined %}
30-
<iframe id="rp_iframe" src={{ status_check_iframe }} hidden></iframe>
31-
<iframe id="op_iframe" src={{ check_session_iframe }} hidden></iframe>
30+
<iframe id="rp_iframe" src="{{ status_check_iframe }}" hidden></iframe>
31+
<iframe id="op_iframe" src="{{ check_session_iframe }}" hidden></iframe>
3232
{% endif %}
3333

3434
<input type="button" onclick="location.href='{{ logout_url }}'"

flask_rp/templates/session_status.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<h1>Session verification</h1>
1111
<h2>Checking that the session hasn't changed!</h2>
1212

13-
<iframe id="op_iframe" src={check_session_iframe} hidden></iframe>
14-
<iframe id="rp_iframe" src={status_check_iframe} hidden></iframe>
13+
<iframe id="op_iframe" src="{check_session_iframe}" hidden></iframe>
14+
<iframe id="rp_iframe" src="{status_check_iframe}" hidden></iframe>
1515

1616
</body>
1717
</html>

0 commit comments

Comments
 (0)