mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-20 04:14:27 -04:00
webui: pgp-linked identity disabled
reason: password-request don't work
This commit is contained in:
parent
ecf8e7f127
commit
12c0efb006
1 changed files with 4 additions and 1 deletions
|
@ -6,7 +6,8 @@ var rs = require("retroshare");
|
||||||
function createidentity(){
|
function createidentity(){
|
||||||
var data = {
|
var data = {
|
||||||
name: document.getElementById("txtname").value,
|
name: document.getElementById("txtname").value,
|
||||||
pgp_linked: document.getElementById("chklinked").checked,
|
pgp_linked: false,
|
||||||
|
//document.getElementById("chklinked").checked,
|
||||||
};
|
};
|
||||||
m.route("/waiting");
|
m.route("/waiting");
|
||||||
rs.request("identity/create_identity",data, function(){
|
rs.request("identity/create_identity",data, function(){
|
||||||
|
@ -32,6 +33,7 @@ module.exports = {view: function(){
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
}),
|
}),
|
||||||
|
/*
|
||||||
m("b","linked with pgp-id: "),
|
m("b","linked with pgp-id: "),
|
||||||
m("input", {
|
m("input", {
|
||||||
type: "checkbox",
|
type: "checkbox",
|
||||||
|
@ -41,6 +43,7 @@ module.exports = {view: function(){
|
||||||
width: "0%",
|
width: "0%",
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
*/
|
||||||
m("p"," "),
|
m("p"," "),
|
||||||
m("input.btn2", {
|
m("input.btn2", {
|
||||||
onclick: createidentity,
|
onclick: createidentity,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue