discord-sandboxed/index.html
2019-10-15 21:07:17 -07:00

24 lines
696 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="./css/style.css">
</head>
<body>
<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>
<webview id="discord" webpreferences="plugins=false, webgl=false, enableRemoteModule=false" src="https://discordapp.com/login"></webview>
<script src="./renderer.js"></script>
</body>
</html>