-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 2.1 KB
/
index.html
File metadata and controls
26 lines (26 loc) · 2.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Young Market - Address Generator</title>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<script src="./src/young-market.js"></script>
<script src="./index.js" defer></script>
</head>
<body>
<center style="padding: 20px; width: 100%; max-width: 700px; margin: auto;font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;">
<p style="color: rgb(17, 57, 18); font-size: 28px; font-weight: bold;">Young Market</p>
<p style="padding: 20px 0px;color: #333;">Welcome to Young Market's blockchain address generator! To create a new address, click on "Generate" and to save your data to a file click on "Save".</p>
<p style="color: red;font-size: 16px;">Warning: Keep this data in complete safety, losing this data may result in the loss of your funds without reversal. None of this data is saved on this website for security reasons.</p>
<div id="divA" style="padding: 20px 0px; display: none; flex-direction: column; flex-wrap: nowrap; align-items: center;">
<p style="margin: 0px;">Address: <span id="address"></span></p>
<p style="margin: 0px;">Seed: <span id="seeed"></span></p>
<p style="margin: 0px;">Private Key: <span id="pk"></span></p>
<p style="margin: 0px;">Public Key: <span id="puk"></span></p>
</div>
<button onclick="generateAddress()" onselect="generateAddress()" style="border: 1px solid #fff;border-radius: 10px;padding: 10px 16px;background-color: rgb(17, 57, 18);color: white;font-size: 18px;">Generate</button>
<button onclick="saveAddress()" onselect="saveAddress()" style="border: 1px solid #fff;border-radius: 10px;padding: 10px 16px;background-color: rgb(17, 57, 18);color: white;font-size: 18px; display: none;">Save</button>
</center>
</body>
</html>