blob: 2cabcd520c0805cbbec8d43e95efbccf2a5d49f7 (
plain)
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
30
31
32
33
34
35
|
// Arching Kaos My Page Section
//
// Kaotisk Hund - 2024
//
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
//
import { makeElement } from "../../arching-kaos-generator.js";
export function myPageSection()
{
var myPageSection = {
element: "div",
id: "mypage-section",
innerHTML: `
<h2>My page</h2>
<button id="stellar-freigher-connect-address-button" onclick="connect()">Connect with Freighter wallet</button>
<div id="my-news">
<h3>My news</h3>
<em id="my-news-sec-not-found">No data found (yet?)!</em>
</div>
<div id="my-mixtapes">
<h3>My mixtapes</h3>
<em id="my-mixtapes-sec-not-found">No data found (yet?)!</em>
</div>
<div id="my-zchain">
<h3>My zchain</h3>
<em id="my-zchain-sec-not-found">No data found (yet?)!</em>
</div>
`
};
makeElement(myPageSection, document.querySelector('.main'));
}
// @license-end
|