Files
edgetunnel/html/manage.html
2022-06-14 23:43:29 +08:00

34 lines
965 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>
<button id="clearlocalstorage">clear local storage</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>