raspibot/public/index.html
2021-06-13 13:51:44 +02:00

30 lines
977 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">
<link href="./css/newchat.css" rel="stylesheet" type="text/css">
<script src="./js/newchat.js"></script>
<title>Raspi-Bot</title>
</head>
<body>
<section class="msger">
<header class="msger-header">
<div class="msger-header-title">
<i class="fas fa-comment-alt">Raspberry Pi 4 Chat Bot</i>
</div>
<div class="msger-header-options">
<span><i class="fas fa-cog"></i></span>
</div>
</header>
<main class="msger-chat"></main>
<form class="msger-inputarea" id="test">
<input type="text" class="msger-input" placeholder="Enter your message...">
<button type="submit" class="msger-send-btn">Send</button>
</form>
</section>
</body>
</html>