-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="foundation.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<form>
<div class="row">
<div class="medium-12 columns">
<label>
Placeholder or vault:secret
<span class="input-group">
<input class="input-group-field" type="text" name="placeholder" placeholder="#{keyvault:vault:secret}">
<span class="input-group-button">
<button class="button" type="submit">get secret</button>
</span>
</span>
</label>
</div>
</div>
<div class="row">
<div class="medium-12 columns">
<label>
Result
<span class="input-group">
<input class="input-group-field" type="text" name="result">
<span class="input-group-button">
<button class="button" type="button" id="copyToClipboard">copy</button>
</span>
</span>
</label>
</div>
</div>
</form>
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>