forked from istio/ztunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add simple dashboard to ztunnel admin (istio#475)
* add dashboard * make gen * include file with macro
- Loading branch information
Showing
2 changed files
with
106 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Ztunnel Admin</title> | ||
<style> | ||
.home-table { | ||
font-family: sans-serif; | ||
font-size: medium; | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} | ||
|
||
.home-data { | ||
text-align: left; | ||
padding: 4px; | ||
} | ||
|
||
.home-form { | ||
margin-bottom: 0; | ||
} | ||
|
||
.button-as-link { | ||
background: none!important; | ||
border: none; | ||
padding: 0!important; | ||
font-family: sans-serif; | ||
font-size: medium; | ||
color: #069; | ||
text-decoration: underline; | ||
cursor: pointer; | ||
} | ||
|
||
.gray { | ||
background-color: #dddddd; | ||
} | ||
|
||
.vert-space { | ||
height: 4px; | ||
} | ||
|
||
.option { | ||
padding-bottom: 4px; | ||
padding-top: 4px; | ||
padding-right: 4px; | ||
padding-left: 20px; | ||
text-align: right; | ||
} | ||
</style> | ||
</head> | ||
<body cz-shortcut-listen="true"> | ||
<table class="home-table"> | ||
<tr><th class="home-data">Command</th><th class="home-data">Description</th></tr> | ||
<tbody> | ||
<tr class="vert-space"> | ||
<td></td> | ||
<td></td> | ||
</tr> | ||
<!--API_ROWS_PLACEHOLDER--> | ||
</tbody> | ||
</table> | ||
</body> | ||
</html> |