discord-sandboxed/index.html

24 lines
626 B
HTML
Raw Normal View History

2019-10-07 05:06:55 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2019-10-07 06:54:38 +00:00
<link type="text/css" rel="stylesheet" href="./css/style.css">
2019-10-07 05:06:55 +00:00
</head>
<body>
2019-10-12 01:51:13 +00:00
2019-10-15 06:21:54 +00:00
<div id="title-bar" class="title-bar">
<div id='title-bar-status' class="status">
</div>
<div id='title-bar-controls' class="window-controls-container">
<button id="minimize-button" class="minimize-button"> - </button>
<button id="close-button" class="close-button"> x </button>
</div>
</div>
2019-10-14 19:23:56 +00:00
<webview id="discord" src="https://discordapp.com/login"></webview>
2019-10-07 05:06:55 +00:00
2019-10-12 01:51:13 +00:00
<script src="./renderer.js"></script>
2019-10-07 05:06:55 +00:00
</body>
</html>