aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/ui.html
blob: 9c56c2e593bd0b03d060326e80baca5718f4046b (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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <link rel="stylesheet" href="ui.css"/>
    </head>
    <body>
        <!--TODO: replace this mess with require -->
        <script src="dist/gpgmejs.bundle.js"></script>
        <script src="testapplication.js"></script>
	<ul>
            <li>
                <span class="label">Text: </span>
	        <input type="text" id='text0' />
            </li>
            <li>
                <span class="label">Public key ID: </span>
                <input type="text" id="key" value="Your Public Key ID here" />
            </li>
        </ul>
        <button id="button0">Encrypt</button><br>
        <div id="answer"></div>
    </body>
</html>