Files
2025-12-01 10:11:40 -08:00

31 lines
878 B
HTML

<!doctype html>
<html>
<head>
<title>Jackson Secretary</title>
<link href="/static/style.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Lexend"
rel="stylesheet"
/>
<script src="https://accounts.google.com/gsi/client"></script>
</head>
<body>
<div class="header">
<h1>Jackson</h1>
</div>
<div class="filler"></div>
<div id="content"></div>
<div class="filler"></div>
<form name="chatbox">
<input
type="text"
name="msg-input"
id="msg-input"
placeholder="Schedule the future"
/>
<input type="submit" id="submit-btn" value=">" />
</form>
<script src="/static/script.js"></script>
</body>
</html>