-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (60 loc) · 2.6 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
<!DOCTYPE html>
<html style="height: 100%">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<script src="browserWindow.js"></script>
<title>PSP Consolizer Programmer</title>
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="browserWindow.css">
</head>
<body class="container h-100 ">
<div id="program-page" class="d-flex flex-column h-100">
<div class="pt-2 pb-2 d-flex align-items-center">
<button type="button" class="btn btn-primary" id="program">Program</button>
<div id="completionStatus" class="ps-2"></div>
</div>
<div id="logs" class="h-100 border rounded border-secondary p-2 mb-2"></div>
</div>
<div class="modal fade show d-block" id="welcomeModal" tabindex="-1">
<div class="modal-dialog modal-fullscreen" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">PSP Consolizer Programmer</h5>
</div>
<div class="modal-body d-flex flex-column">
<div class="h-100">
<p>
This tool will program your Arduino and NINA in one click without the need to install the Arduino IDE or any other tools.
</p>
<p>
Please do the following before continuing:
</p>
<ol>
<li>Disconnect the jumper labeled <em>PROG TGL 1</em> if you assembled it</li>
<li>Disconnect the jumper labeled <em>PWR TGL 1</em> if you assembled it</li>
<li>Connect the Arduino to your PC</li>
</ol>
</div>
<div class="card m2">
<div class="card-body">
<h5 class="card-title">Whats in this release</h5>
<p class="card-text">
<strong>Bluepad32 version:</strong> <span id="bluePadVersion"></span>
</p>
<p class="card-text" id="commitMessage"></p>
<p class="card-text">
<strong>PSP Consolizer sha:</strong> <span id="commitSha"></span>
</p>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal" aria-label="Close">Lets go</button>
</div>
</div>
</div>
</div>
<div class="modal-backdrop fade show d-block"></div>
</body>
</html>