-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (61 loc) · 2.33 KB
/
Copy pathindex.html
File metadata and controls
73 lines (61 loc) · 2.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<title>TurboTags2 Tools</title>
<!-- js logic script -->
<script src="./js/tt2tools.js"></script>
</head>
<body class="container-fluid bg-dark">
<!-- header start -->
<header class="text-center my-3 text-success">
<h1>TurboTags2 Tools<sup class="text-warning"> beta</sup></h1>
<h6>Developed by: <a href="https://github.com/ahmed-rasool" class="text-primary">Ahmed Rasool</a></h6>
</header>
<!-- header end -->
<!-- main element start -->
<main class="w-75 mx-auto">
<!-- input section start -->
<section class="my-5">
<form onsubmit="event.preventDefault()">
<textarea id="input" class="form-control bg-dark text-white-50" placeholder=" Type or Paste input here"
rows="5"></textarea>
<div class="d-flex justify-content-center my-3">
<button onclick="reset()" class="btn btn-danger btn-lg mx-2">RESET</button>
<button onclick="parseTT2()" class="btn btn-success btn-lg mx-2">PARSE</button>
<button onclick="formatTT2()" class="btn btn-success btn-lg mx-2">FORMAT</button>
<button onclick="parseJSON()" class="btn btn-success btn-lg mx-2">JSON</button>
<button onclick="reset()" class="btn btn-danger btn-lg mx-2">RESET</button>
</div>
</form>
</section>
<!-- input section end -->
<!-- <hr class="border-secondary"> -->
<!-- output section start -->
<section class="bg-secondary text-white-50 container overflow-auto">
<code id="output-p" class="hide text-white"></code>
<table id="output-table" class="hide table table-dark">
<thead id='output-head'>
<!-- <tr>
<td>line</td>
<td>tagName</td>
<td>scope</td>
<td>value1</td>
<td>value2</td>
<td>value3</td>
<td>value4</td>
</tr>
</thead> -->
<tbody id="output">
</tbody>
</table>
</section>
<!-- output section end -->
</main>
<!-- main element end -->
</body>
</html>