UNPKG

chat-pane

Version:

Solid-compatible Panes: Chat

30 lines (29 loc) 608 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Solid Chat</title> <style> body { margin: 10%; } input { background-color: #eef; padding: 0.5em; border: 0.5em solid white; font-size: 120%; } </style> <script defer src="main.js"></script></head> <body> <h1>Solid Chat</h1> <div> <div id="webId"></div> </div> <div id="loginBanner"></div> <p> A handy app for chatting with other Solid users </p> <!-- div from chatPane.render will be inserted here --> </body> </html>