Uh oh!
There was an error while loading. Please reload this page.
forked from nodeSolidServer/node-solid-server
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
48 lines (42 loc) · 1.43 KB
/
Copy pathindex.html
File metadata and controls
48 lines (42 loc) · 1.43 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<htmllang="en">
<head>
<metacharset="utf-8">
<metaname="viewport" content="width=device-width, initial-scale=1">
<title>Welcome to Solid</title>
<linkrel="stylesheet" href="/common/css/bootstrap.min.css">
<linkrel="stylesheet" href="/common/css/solid.css">
</head>
<body>
<divclass="container">
<divclass="page-header">
<divclass="pull-right">
<buttonid="register" type="button" class="btn btn-primary">Register</button>
<buttonid="login" type="button" class="hidden btn btn-default btn-success">Log in</button>
<buttonid="logout" type="button" class="hidden btn btn-danger">Log out</button>
</div>
<h1>Welcome to the Solid Prototype</h1>
</div>
<pclass="lead">
This is a prototype implementation of a Solid server.
It is a fully functional server, but there are no security or stability guarantees.
If you have not already done so, please create an account.
</p>
<pclass="lead hidden" id="loggedIn">
You are logged in as
<ahref="#" id="profileLink"></a>.
</p>
<section>
<h2>Server info</h2>
<dl>
<dt>Name</dt>
<dd>localhost</dd>
<dt>Details</dt>
<dd>Running on <ahref="https://github.com/solid/node-solid-server/releases/tag/v5.7.3">Solid 5.7.3</a></dd>
</dl>
</section>
</div>
<scriptsrc="/common/js/solid-auth-client.bundle.js"></script>
<scriptsrc="/common/js/auth-buttons.js"></script>
</body>
</html>