-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.html
More file actions
34 lines (26 loc) · 1.04 KB
/
layout.html
File metadata and controls
34 lines (26 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<html>
<head>
<title>FastAPI application</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
{% set prefix="http://127.0.0.1:8000" %}
<table class="table" border="1">
<tr>
<td><a href="{{prefix}}/home">Home</a></td>
<td><a href="{{prefix}}/search_user">Search User</a></td>
<td><a href="{{prefix}}/user">Show Users</a></td>
<td><a href="{{prefix}}/insert_user">Insert User</a></td>
<td><a href="{{prefix}}/keyword">Search Keyword</a></td>
<td><a href="{{prefix}}/show_items">Show Items</a></td>
</tr>
</table>
<br>
<!--<h1>{{access_token}}</h1>-->
</body>
</html>