diff options
author | Loïc Collignon <loic.collignon@iot.bzh> | 2017-12-19 17:15:55 +0100 |
---|---|---|
committer | Loïc Collignon <loic.collignon@iot.bzh> | 2017-12-19 17:15:55 +0100 |
commit | 4f87bf2d5e0154df8b063948a80d90d614a83252 (patch) | |
tree | aee213912c7972ff8913753264f97b4c0734679c /agl-identity-service/htdocs/identity/index.html | |
parent | 4d710564d4ba6ed525ad05fea03310857abd4d63 (diff) |
added a fake auth verb for testing purpose and use persistence api to store user profile.
Change-Id: Ifc38f01664dec91150ca7574e4263ee0bc755653
Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'agl-identity-service/htdocs/identity/index.html')
-rw-r--r-- | agl-identity-service/htdocs/identity/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/agl-identity-service/htdocs/identity/index.html b/agl-identity-service/htdocs/identity/index.html new file mode 100644 index 0000000..d5432fb --- /dev/null +++ b/agl-identity-service/htdocs/identity/index.html @@ -0,0 +1,26 @@ +<!doctype html> +<html> + <head> + <title>agl-service-identity</title> + <meta charset="UTF-8"> + <script type="text/javascript" src="AFB-websock.js"></script> + <script type="text/javascript" src="identity-binding.js"></script> + <link rel="stylesheet" type="text/css" href="binding-debug.css" /> + </head> + + <body onload="init();" id="app-body"> + <div id="debug-panel-container"></div> + <h1>agl-service-identity</h1> + <p> + <ul> + <li> + <select name="fake-auth-kind" id="fake-auth-kind"> + <option value="nfc" selected="selected">nfc</option> + </select> + <input type="text" name="fake-auth-key" id="fake-auth-key" value="a71d4d00"/> + <button onclick="fake_auth();">fake auth</button> + </li> + </ul> + </p> + </body> +</html> |