Niansuh commited on
Commit
1c0c5b3
·
verified ·
1 Parent(s): 5b32874

Create templates/user.html

Browse files
Files changed (1) hide show
  1. 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>