34 lines
925 B
HTML
34 lines
925 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self';" />
|
|
<title>ESP communication</title>
|
|
<link rel="stylesheet" href="./css/main.css" />
|
|
<link rel="stylesheet" href="./css/elements.css" />
|
|
<link rel="stylesheet" href="./css/chats.css" />
|
|
<link rel="stylesheet" href="./css/chat.css" />
|
|
|
|
<script type="module" src="./js/main.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<!-- <div class="chats">
|
|
<div class="card espselect">
|
|
<p class="title">123</p>
|
|
<button class="button">
|
|
<img src="./media/icons/settings.svg" />
|
|
</button>
|
|
</div>
|
|
<div class="chatslist">
|
|
<div id="chatslistuser">
|
|
<p id="title">11221</p>
|
|
<p id="subtitle">1212</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="chat"></div> -->
|
|
</body>
|
|
</html>
|