- Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathindex.html
29 lines (28 loc) · 979 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
<html>
<body>
<div>
<h1>Identity</h1>
<h2>Sign In</h2>
<div>
<labelfor="idpUrl" style="display: inline-block; width: 120px">Identity Provider: </label>
<inputtype="text" id="idpUrl" value="https://identity.internetcomputer.org/" />
</div>
<buttonid="signinBtn">Sign In</button>
<buttonid="signoutBtn">Sign Out</button>
<h2>Principal:</h2>
<divid="principal"></div>
</div>
<div>
<h1>Contact the IC</h1>
<labelfor="hostUrl" style="display: inline-block; width: 120px">Replica URL: </label>
<inputtype="text" id="hostUrl" value="https://icp-api.io/" />
<br/>
<labelfor="canisterId" style="display: inline-block; width: 120px">Canister ID: </label>
<inputtype="text" id="canisterId" value="4k2wq-cqaaa-aaaab-qac7q-cai" />
</div>
<div>
<buttonid="whoamiBtn">Who Am I?</button>
<divid="whoamiResponse"></div>
</div>
</body>
</html>