fix: added favicon to join_game
This commit is contained in:
parent
c6700bd41d
commit
ff2648f8f2
|
@ -79,6 +79,16 @@ def socketio_js():
|
||||||
#return the background image
|
#return the background image
|
||||||
return app.send_static_file('socket.io.js')
|
return app.send_static_file('socket.io.js')
|
||||||
|
|
||||||
|
@app.route('/browser-polyfill.js')
|
||||||
|
def socketio_js():
|
||||||
|
#return the background image
|
||||||
|
return app.send_static_file('browser-polyfill.js')
|
||||||
|
|
||||||
|
@app.route('/browser-polyfill.js.map')
|
||||||
|
def socketio_js():
|
||||||
|
#return the background image
|
||||||
|
return app.send_static_file('browser-polyfill.js.map')
|
||||||
|
|
||||||
@app.route('/azul-flake.png')
|
@app.route('/azul-flake.png')
|
||||||
def logo():
|
def logo():
|
||||||
#return the background image
|
#return the background image
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -3,6 +3,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Ozai webui:Join Game</title>
|
<title>Ozai webui:Join Game</title>
|
||||||
|
<link rel="icon" type="image/png" href="/azul-flake.png">
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
|
@ -59,10 +60,8 @@
|
||||||
margin: 6em 1em;
|
margin: 6em 1em;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
<script src="/browser-polyfill.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div>
|
||||||
|
@ -115,4 +114,4 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue