-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 845 Bytes
/
index.html
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
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Profile Viewer</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<h1>Profile viewer</h1>
<p id="login">
You are not logged in.
<button>Log in</button>
</p>
<p id="logout">
You are logged in as <span id="user"></span>.
<button>Log out</button>
</p>
<p>
<label for="profile">Profile:</label>
<input id="profile">
<button id="view">View</button>
</p>
<dl id="viewer">
<dt>Full name</dt>
<dd id="fullName"></dd>
<dt>Friends</dt>
<dd>
<ul id="friends"></ul>
</dd>
</dl>
<script src="scripts/jquery.js"></script>
<script src="scripts/solid-auth-client.bundle.js"></script>
<script src="scripts/rdflib.min.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>