-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (48 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Guid Generator</title>
<script src="bundle.js"></script>
<link rel="stylesheet" href="./app/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pretty-checkbox@3.0/dist/pretty-checkbox.min.css">
<link href="https://fonts.googleapis.com/css?family=Bubbler+One" rel="stylesheet">
</head>
<body>
<div class="content">
<h2 class="intro">GUID Generator</h2>
<h4 class="brand">by AjairaApps</h4>
<div class="row">
<div class="block">
<!-- Hyphens -->
<div class="checkbox pretty p-default">
<input type="checkbox" id="hyphens" onchange="buttonClicked()"/>
<div class="state">
<label>Hyphens</label>
</div>
</div>
</div>
<div class="block">
<!-- {} Braces -->
<div class="checkbox pretty p-default">
<input type="checkbox" id="braces" onchange="buttonClicked()"/>
<div class="state">
<label>{} Braces</label>
</div>
</div>
</div>
<div class="block">
<!-- Uppcase -->
<div class="checkbox pretty p-default">
<input type="checkbox" id="uppcase" onchange="buttonClicked()"/>
<div class="state">
<label>Uppcase</label>
</div>
</div>
</div>
</div>
<input id="guid" type="text" onClick="this.select();" value="">
<button class="button" id="copy-button" data-clipboard-target="#guid" onclick="buttonClicked()">Generate and Copy</button>
</div>
</body>
</html>