-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (78 loc) · 2.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JSON to CSV Converter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>JSON to CSV Converter</h1>
<div class="download-button-container">
<button id="downloadAllButton" class="primary-button" disabled>Download CSV with Profiles</button>
</div>
</header>
<main>
<!-- Profile 1 Section -->
<section class="input-section">
<h2>Add data for Profile 1:</h2>
<div id="inputContainer1">
<textarea id="jsonInput1" placeholder="Paste JSON here."></textarea>
</div>
<p id="successMessage1" class="hidden">Successfully added data for Profile 1 into the CSV.</p>
</section>
<section class="actions">
<button id="convertButton1">Convert Profile 1 to CSV</button>
</section>
<!-- Profile 2 Section -->
<section class="input-section">
<h2>Add data for Profile 2:</h2>
<div id="inputContainer2">
<textarea id="jsonInput2" placeholder="Paste JSON here."></textarea>
</div>
<p id="successMessage2" class="hidden">Successfully added data for Profile 2 into the CSV.</p>
</section>
<section class="actions">
<button id="convertButton2">Convert Profile 2 to CSV</button>
</section>
<!-- Profile 3 Section -->
<section class="input-section">
<h2>Add data for Profile 3:</h2>
<div id="inputContainer3">
<textarea id="jsonInput3" placeholder="Paste JSON here."></textarea>
</div>
<p id="successMessage3" class="hidden">Successfully added data for Profile 3 into the CSV.</p>
</section>
<section class="actions">
<button id="convertButton3">Convert Profile 3 to CSV</button>
</section>
<!-- Profile 4 Section -->
<section class="input-section">
<h2>Add data for Profile 4:</h2>
<div id="inputContainer4">
<textarea id="jsonInput4" placeholder="Paste JSON here."></textarea>
</div>
<p id="successMessage4" class="hidden">Successfully added data for Profile 4 into the CSV.</p>
</section>
<section class="actions">
<button id="convertButton4">Convert Profile 4 to CSV</button>
</section>
<!-- Profile 5 Section -->
<section class="input-section">
<h2>Add data for Profile 5:</h2>
<div id="inputContainer5">
<textarea id="jsonInput5" placeholder="Paste JSON here."></textarea>
</div>
<p id="successMessage5" class="hidden">Successfully added data for Profile 5 into the CSV.</p>
</section>
<section class="actions">
<button id="convertButton5">Convert Profile 5 to CSV</button>
</section>
</main>
<footer>
<p>Version: 1.0.1</p>
</footer>
<script src="script.js"></script>
</body>
</html>