mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-24 09:08:16 +08:00
32 lines
896 B
HTML
32 lines
896 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>管理</title>
|
|
|
|
<link rel="stylesheet" href="./style/manage.css">
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
<div class="keyContainer">
|
|
<label for="key" class="key">heroku key</label>
|
|
<input type="text" size="36" id="key">
|
|
<input type="checkbox" name="savetolocalstorage" id="save2Local">
|
|
<label for="save2Local">save to localstorage</label>
|
|
<button id="addKey">Add</button>
|
|
</div>
|
|
<template id="app-list">
|
|
<div class="accountContainer">
|
|
<span class="key"></span>
|
|
<ul class="app-list">
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<script src="./manage.js" type="module"></script>
|
|
</body>
|
|
</html> |