-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 1.77 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 1.77 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
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Join Solid</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
<link rel="manifest" href="manifest.json">
<link rel="icon" href="images/favicon.png">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title">Welcome to Solid!</h1>
<section id="welcome">
<hr>
<p>Do you have a Solid Pod?</p>
<hr>
<div class="field">
<label class="label" for="idp">Identity Provider:</label>
<div class="control">
<input class="input" type="url" id="idp" value="https://login.inrupt.com" placeholder="https://login.inrupt.com">
</div>
</div>
<button id="login" class="button is-info is-rounded">Log in</button>
<hr>
<p>No Pod? Get one from a provider!</p>
<hr>
<a href="https://solidproject.org/users/get-a-pod" target="_blank" class="button is-info is-rounded">I Want a Solid Pod!</a>
<hr>
</section>
<section id="logout" style="display:none">
<hr>
<p>Logged in as:</p>
<a id="user" target="_blank" href="#" class="has-text-link"></a>
<hr>
<button id="logout-btn" class="button is-info is-rounded">Log out</button>
</section>
<section id="profile-section" style="display:none">
<hr>
<h2 class="subtitle">Your Profile</h2>
<p id="profile-name"></p>
<hr>
</section>
</div>
</section>
<script type="module" src="/src/main.js"></script>
</body>
</html>