forked from SolidOS/solid-panes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 779 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Solid Pane Tester</title>
<style>
body {
margin: 10%;
}
input {
background-color: #eef;
padding: 0.5em;
border: 0.5em solid white;
font-size: 120%;
}
</style>
</head>
<body>
<h1>Solid Pane Tester</h1>
<div id="loginBanner"></div>
<p>
A handy tool for pane developers. Put your JS or TS file in dev/pane/.
Run <tt>renderPane('https://solidos.solidcommunity.net/profile/card#me')</tt> from the console.
Don't forget that the resource owner needs to add http://localhost:9000 as a trusted app.
</p>
<div id="render">HTML element from pane.render will be inserted here ...</div>
</body>
</html>