-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 2.61 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 2.61 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PRS MODCAT Decoder</title>
<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@300;400;600;700&display=swap" rel="stylesheet">
<script src="MODCAT_data.js" ></script>
<script src="decode.js" type="text/javascript"></script>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="container-main">
<h1>PRS MODCAT Decoder</h1>
<table id="dataTable">
<tr><td class="label" for="theMODCAT">Enter MODCAT: </td><td><input id="theMODCAT" size="30" type="text">
<input onClick="decodeMODCAT(document.getElementById('theMODCAT').value)" type="button" value="Decode MODCAT"></td></tr>
<tr><td class="label">Model: </td><td><span id='modelField'></span></td></tr>
<tr><td class="label">Top Wood: </td><td><span id='topWoodField'></span></td></tr>
<tr><td class="label">Frets: </td><td><span id='fretsField'></span></td></tr>
<tr><td class="label">Top Spec: </td><td><span id='topSpecField'></span></td></tr>
<tr><td class="label">Top Grade: </td><td><span id='topGradeField'></span></td></tr>
<tr><td class="label">Neck Wood: </td><td><span id='neckWoodField'></span></td></tr>
<tr><td class="label">Neck Carve: </td><td><span id='neckCarveField'></span></td></tr>
<tr><td class="label">Fingerboard Wood: </td><td><span id='fingerboardField'></span></td></tr>
<tr><td class="label">Inlay: </td><td><span id='inlayField'></span></td></tr>
<tr><td class="label">Bridge: </td><td><span id='bridgeField'></span></td></tr>
<tr><td class="label">Color: </td><td><span id='colorField'></span></td></tr>
<tr><td class="label">Hardware: </td><td><span id='hardwareField'></span></td></tr>
<tr><td class="label">Treble Pickup: </td><td><span id='treblepuField'></span><br></td></tr>
<tr><td class="label">Middle Pickup: </td><td><span id='middlepuField'></span></td></tr>
<tr><td class="label">Bass Pickup: </td><td><span id='basspuField'></span></td></tr>
<tr><td class="label">Electronics: </td><td><span id='elecField'></span></td></tr>
</table>
<p>A sample MODCAT: 5MM2F-HVIB2_CC_NS-SK </p>
<p>Help us improve the MODCAT Decoder by <a href="https://github.com/DChandlerP/ModCatDecoder/issues">raising issues</a>
or submitting a pull request to <a href="https://github.com/DChandlerP/ModCatDecoder/">our project on Github.</a></p>
</div>
</body>