This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
simple-disco-store/test.html

28 lines
1019 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="jquery.qs.js"></script>
<script type="text/javascript" src="discoquery.js"></script>
<script type="text/javascript" src="debug.js"></script>
</head>
<body>
<script>
function query() {
$.disco_query("coucou", "http://localhost/~bdauvergne/discostore/store.html", "http://localhost/~bdauvergne/discostore/response.html", function (entity_id, auth) {
alert("idp is " + entity_id); });
}
function set() {
$.disco_set("coucou", $('#idp').val(), "http://localhost/~bdauvergne/discostore/store.html", "http://localhost/~bdauvergne/discostore/response.html", function (entity_id, auth) {
alert("idp has been set to " + entity_id); });
}
</script>
<div>
<button onclick="query()">Query</button>
</div>
<div>
<label>IdP</label><input type="text" id="idp"></input>
<button onclick="set()">Set</button>
</body>
<html>