Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
</h:form>
<h:outputLink id="logoutFiaFilter" value="#{request.contextPath}/shiro/auth/logout">Logout (via filter)</h:outputLink>
</h:body>
<script type="text/javascript">
<script>
const invalidateSession = async (path) => {
const response = await fetch(path);
const strresp = await response.text();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<input type="button" id="invalidate" value="Invalidate Session"
onclick="invalidateSession('#{request.contextPath}/invalidatesession', 'Session invalidated!')" />
</h:body>
<script type="text/javascript">
<script>
const invalidateSession = async (path, alertText) => {
const response = await fetch(path);
const strresp = await response.text();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

</div>

<script type="text/javascript">
<script>
document.getElementById('username').focus();
</script>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"admin" role.
</p>

<script type="text/javascript">
<script>
document.getElementById('username').focus();
</script>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</div>
</div>

<script type="text/javascript">
<script>
document.getElementById('username').focus();
</script>

Expand Down