-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathoptions.html
45 lines (40 loc) · 1.07 KB
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<style>
form div {
display:grid;
grid-template-columns: max-content max-content;
grid-gap:5px;
}
form div label {
text-align:right;
}
</style>
</head>
<body>
<form>
<div>
<label for="template">Container name template:</label>
<input type="text" id="template" name="template" size="40" />
<label for="preview">Preview:</label>
<input type="text" id="preview" readonly />
<label for="length">Maximum container name length:</label>
<input type="number" id="length" name="length" />
<label for="slug">Common name prefix to remove:</label>
<input type="text" id="slug" name="slug" />
</div>
<p>Available variables:</p>
<ul>
<li>name</li>
<li>email</li>
<li>number</li>
<li>role</li>
<li>subdomain</li>
</ul>
<button type="submit">Save</button>
</form>
<script src="options.js"></script>
</body>
</html>