-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.32 KB
/
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
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hello, Blockstack!</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="bootstrap.min.css" />
<link rel="stylesheet" href="app.css" />
<script src="bundle.js"></script>
<script src="app.js"></script>
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="panel-landing" id="section-1">
<h1 class="landing-heading">Hello, Blockstack!</h1>
<p class="lead">
<a href="#" class="btn btn-primary btn-lg" id="signin-button">
Sign In with Blockstack
</a>
</p>
</div>
<div class="panel-welcome hide" id="section-2">
<div class="avatar-section">
<img src="https://s3.amazonaws.com/onename/avatar-placeholder.png" class="img-rounded avatar" id="avatar-image">
</div>
<h1>Hello, <span id="heading-name">Anonymous</span>!</h1>
<p class="lead">
<a href="#" class="btn btn-primary btn-lg" id="signout-button">
Logout
</a>
</p>
</div>
</div>
</div>
</body>
</html>