Spaces:
Paused
Paused
Create templates/user.html
Browse files- templates/user.html +14 -0
templates/user.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>User Panel</title>
|
| 6 |
+
<link rel="stylesheet" href="/static/style.css">
|
| 7 |
+
</head>
|
| 8 |
+
<body>
|
| 9 |
+
<h1>User Panel</h1>
|
| 10 |
+
<button id="testApiButton">Test API</button>
|
| 11 |
+
<div id="apiResult"></div>
|
| 12 |
+
<script src="/static/user.js"></script>
|
| 13 |
+
</body>
|
| 14 |
+
</html>
|