-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<title>Mock person csv data generator</title>
<link
href="styles.css"
rel="stylesheet">
</head>
<body>
<div class="top">
<h2>Mock client data generator</h2>
<button id="btn">Generate line</button>
<button id="btn-ten">Generate x 10</button>
<button id="btn-onek">Generate x 100</button>
<button id="btn-clr">Clear data</button>
<button id="btn-copy">Copy all data</button>
<div>Lines generated: <span id="namecount"></span></div>
<form class="grid-c">
<label>Name<input type="checkbox" id="a" checked></label>
<label>Birthday<input type="checkbox" id="b" checked></label>
<label>Address<input type="checkbox" id="c" checked></label>
<label>Postalcode<input type="checkbox" id="d" checked></label>
<label>City<input type="checkbox" id="e" checked></label>
<label>Phone<input type="checkbox" id="f" checked></label>
</form>
</div>
<div class="grid-r" id="data"></div>
<input type="text" id="copy">
<script src="index.js"></script>
</body>
</html>