Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
elunez committed Jun 16, 2023
1 parent 1900596 commit 33af765
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions azure/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css">
<script>
document.addEventListener('keydown', function (event) {
if (event.key === 'F5') {
location.reload();
}
});
</script>
<title>Azure Manager</title>
{% endblock %}
</head>
Expand Down

0 comments on commit 33af765

Please sign in to comment.