-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (103 loc) · 3.64 KB
/
index.html
File metadata and controls
106 lines (103 loc) · 3.64 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lock Bot</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./assets/style.css" />
</head>
<body>
<header>
<!-- create a header/title -->
<h1>Welcome to LockBot</h1>
<h3>LockBot is an easier way to generate pin charts for master key systems of any size. </h3>
</header>
<main>
<aside>
<!-- create a side menu that has a selection of functions based on what they want to do -->
<!-- yale 5 pin, 6pin, 7pin systems -->
<!-- LFIC or standard - basically does it need a control key? -->
<!-- american padlocks, master padlocks -->
<!-- cam locks, include pin tumbler and wafer cylinder -->
<!-- yale key systems and keyways flow chart -->
<!-- load a saved system or start from scratch -->
</aside>
<section id="about">
<!-- create a simple set of instructions for using the application -->
<!-- provide some examples of how ti use it -->
<!-- list or explain all the different options available -->
</section>
<section>
<!-- make a table for the actual function. Start with 5 pin padlock -->
<table class="table table-bordered">
<tr>
<th colspan="6" style="text-align: center;"> 5 Pin Padlock Cylinder</th>
</tr>
<tr>
<th>Key ID</th>
<th>P1</th>
<th>P2</th>
<th>P3</th>
<th>P4</th>
<th>P5</th>
</tr>
<tr>
<td>Driver Pins</td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
</tr>
<tr>
<td>Change Key</td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
</tr>
<tr>
<td>Master</td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
</tr>
<tr>
<td>Grand Master</td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
</tr>
<tr>
<td>Great Grand Master</td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
<td><textarea></textarea></td>
</tr>
</table>
<button id="solve">Solve</button>
</section>
</main>
<footer></footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
</body>
</html>