mirror of
https://github.com/wolfswolke/DeathGarden_API_Rebirth.git
synced 2026-03-21 17:54:09 -05:00
added metadata to html
This commit is contained in:
parent
5f69d77bbe
commit
e4bda860ab
|
|
@ -19,6 +19,13 @@
|
|||
}
|
||||
</style>
|
||||
<meta http-equiv="refresh" content="4">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
|
||||
<meta name="msapplication-TileColor" content="#000000">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Matchmaking Debug Information</h1>
|
||||
|
|
@ -39,7 +46,7 @@
|
|||
{% for lobby in lobby_data %}
|
||||
<tr>
|
||||
<td>{{ lobby.id }}</td>
|
||||
<td>{{ lobby.host }}</td>
|
||||
<td>1</td>
|
||||
<td>
|
||||
<ul>
|
||||
{% for runner in lobby.nonHosts %}
|
||||
|
|
|
|||
27
src/templates/debug/upload.html
Normal file
27
src/templates/debug/upload.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>File Upload</title>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
|
||||
<meta name="msapplication-TileColor" content="#000000">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
</head>
|
||||
<body>
|
||||
<h2>Upload File</h2>
|
||||
<form action="/api/v1/upload" method="post" enctype="multipart/form-data">
|
||||
<label for="api_token">API Token:</label><br>
|
||||
<input type="text" id="api_token" name="api_token"><br><br>
|
||||
|
||||
<label for="file">Select file:</label><br>
|
||||
<input type="file" id="file" name="file"><br><br>
|
||||
|
||||
<input type="submit" value="Upload">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -5,6 +5,13 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Debug User Infos</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
|
||||
<meta name="msapplication-TileColor" content="#000000">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
</head>
|
||||
<body>
|
||||
<div class="align-center">
|
||||
|
|
|
|||
|
|
@ -5,7 +5,14 @@
|
|||
/>
|
||||
<html>
|
||||
<head>
|
||||
<title>Deathgarden Bloodharvest testing API</title>
|
||||
<title>Deathgarden Bloodharvest REBIRTH API</title>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
|
||||
<meta name="msapplication-TileColor" content="#000000">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Welcome to the Deathgarden Bloodharvest Testing API.</h1>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,13 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Deathgarden Bloodharvest testing API Updater Endpoint</title>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
|
||||
<meta name="msapplication-TileColor" content="#000000">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
</head>
|
||||
<body>
|
||||
<h1>This Endpoint is used to update any files that we provide.</h1>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user