added accept cookie on web version of BSP registration page

Niko PLP 8 months ago
parent e652824fe3
commit bab5cdb83a
  1. BIN
      ng-app/dist-file.tar.gz
  2. 28
      ngaccount/web/src/routes/Create.svelte
  3. 9
      p2p-net/src/utils.rs

Binary file not shown.

@ -339,6 +339,34 @@
>
</span>
</li>
{#if !window.__TAURI__}
<li class="flex space-x-3">
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="none"
stroke="currentColor"
stroke-width="1.5"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M15 9h3.75M15 12h3.75M15 15h3.75M4.5 19.5h15a2.25 2.25 0 002.25-2.25V6.75A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25v10.5A2.25 2.25 0 004.5 19.5zm6-10.125a1.875 1.875 0 11-3.75 0 1.875 1.875 0 013.75 0zm1.294 6.336a6.721 6.721 0 01-3.17.789 6.721 6.721 0 01-3.168-.789 3.376 3.376 0 016.338 0z"
/>
</svg>
<span
>By agreeing to those terms, you allow this software to store
some personal data locally in localStorage, the equivalent of
a cookie. This cookie contains your wallet and is never sent
to us. If you delete this cookie without keeping a copy of
your wallet somewhere else, then you will permanently loose
your wallet.
</span>
</li>
{/if}
</ul>
</div>
</div>

@ -123,11 +123,16 @@ async fn retrieve_ng_bootstrap(location: &String) -> Option<LocalBootstrapInfo>
APP_PREFIX.to_string()
};
let url = format!("{}{}", prefix, NG_BOOTSTRAP_LOCAL_PATH);
//log_info!("url {}", url);
log_info!("url {}", url);
let resp = reqwest::get(url).await;
//log_info!("{:?}", resp);
if resp.is_ok() {
let resp = resp.unwrap().json::<LocalBootstrapInfo>().await;
return Some(resp.unwrap());
return if resp.is_ok() {
Some(resp.unwrap())
} else {
None
};
} else {
//log_info!("err {}", resp.unwrap_err());
return None;

Loading…
Cancel
Save