This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
31 lines (31 loc) · 1.88 KB
/
popup.html
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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div style="display: flex;flex-direction: column;align-items: center;width: 750px;height: 1134px;">
<div style="font-size: 18px;font-weight: bold;margin-top: 20px;margin-bottom: 20px;width: 50%">Input your
Node Host:</div>
<input type="text" class="input_file" id='host_url' placeholder="input your node host url"
style="font-size: 16px;margin-top: 10px;width: 50%;height: 30px;padding: 10px" value="http://127.0.0.1:8080"/>
<div style="font-size: 18px;font-weight: bold;margin-top: 20px;margin-bottom: 20px;width: 50%">Input your
message:</div>
<textarea id="msg" rows="10" cols="30" placeholder="input your message"
style="font-size: 16px;width: 50%;margin-top: 10px;resize: none;padding: 10px"></textarea>
<div style="font-size: 18px;font-weight: bold;margin-top: 20px;margin-bottom: 20px;width: 50%">Use Your
PrivateKey and PublicKey to generate Signature for Transaction locally:</div>
<input type="file" class="input_file" id='pk_file' title="select your privatekey file"
style="margin-top: 10px;width: 50%;" />
<input type="file" class="input_file" id='pubkey_file' title="select your publickey file"
style="margin-top: 20px;width: 50%;" />
<div style="font-size: 18px;font-weight: bold;margin-top: 20px;margin-bottom: 20px;width: 50%">Select or
Input your transaction's release time since now:</div>
<input type="datetime-local" class="input_file" id='lock_time'
placeholder="select or input your release time since now"
style="font-size: 16px;margin-top: 10px;width: 50%;height: 30px;padding: 10px" />
<input type='button' id='btn' value='Send Transaction'
style="margin-top: 40px;width: 50%;height:44px;align-items: center;border-radius: 10px;border-width: 0px;background-color: #4693E0;color: #ffffff;">
</div>
<script src="popup.js"></script>
</body>
</html>