This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 2.05 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Temporary encrypted clipboard</title>
<link
href="https://cdn.bootcdn.net/ajax/libs/bulma/0.9.4/css/bulma.css"
rel="stylesheet"
/>
<style>
.footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
font-size: small;
padding-bottom: 48px;
}
</style>
</head>
<body>
<section class="section">
<div class="container">
<div class="columns is-centered">
<div class="column is-half">
<div class="field" id="textarea-field">
<label class="label" id="textarea-title"
>Enter Your Content:</label
>
<div class="control">
<textarea id="textarea" class="textarea" type="text"></textarea>
</div>
</div>
<div class="field" id="input-field" style="display: none">
<label class="label">Enter Your Password:</label>
<div class="control">
<input class="input" id="input" type="password" />
</div>
</div>
<div class="field" id="link-field" style="display: none">
<div class="control">
<label class="label" id="label">Shortened Link:</label>
</div>
</div>
<div class="field">
<div class="control">
<button class="button is-primary" id="action-btn">
Encrypted
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer is-fixed-bottom is-centered">
<p>This project is available on GitHub:</p>
<a href="https://github.com/TBXark/temporary-encrypted-clipboard"
>https://github.com/TBXark/temporary-encrypted-clipboard</a
>
</footer>
<script src="/main.js"></script>
</body>
</html>