|
2 | 2 | <html lang="en" > |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | | - <title>FOSSbooth v1.1</title> |
| 5 | + <title>FOSSbooth v1.2</title> <!-- Change name here for tab name --> |
6 | 6 | <link rel="stylesheet" href="./style.css"> |
7 | 7 |
|
8 | 8 | </head> |
|
13 | 13 | <head> |
14 | 14 | <meta charset="UTF-8"> |
15 | 15 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
16 | | - <title>Photo Booth App</title> |
| 16 | + <title>FOSSbooth</title> |
17 | 17 | <link rel="stylesheet" href="styles.css"> |
18 | 18 | </head> |
19 | 19 | <body> |
20 | 20 | <div id="welcomeScreen"> |
21 | | - <h1>Welcome to FOSSbooth</h1> |
22 | | - <button onclick="showScreen('photoSelection')">Start</button> |
| 21 | + <h1>Welcome to FOSSbooth!</h1> <!--Change this to change the the greeting/name in the app--> |
| 22 | + <button onclick="showScreen('photoSelection')">Lets Go!</button> <!--Change this to change the text in the app--> |
23 | 23 | </div> |
24 | 24 |
|
25 | 25 | <div id="photoSelection" style="display: none;"> |
26 | | - <h2>How many photos do you want on your strip?</h2> |
| 26 | + <h2>How many photos do you want on your strip?</h2> <!--Change this to change the text in the app--> |
27 | 27 | <button onclick="startPhotoBooth(2)">2 Photos</button> |
28 | 28 | <button onclick="startPhotoBooth(3)">3 Photos</button> |
29 | | - <button onclick="startPhotoBooth(4)">4 Photos</button> |
30 | 29 | </div> |
31 | 30 |
|
32 | 31 | <div id="photoCapture" style="display: none;"> |
33 | | - <h2 id="countdownText">Are you ready to take your photos?</h2> |
| 32 | + <h2 id="countdownText">Are you ready to take your photos?</h2> <!--Change this to change the text in the app--> |
34 | 33 | <video id="camera" autoplay></video> |
35 | | - <button onclick="startPhotoSequence()">Go</button> |
| 34 | + <button onclick="startPhotoSequence()">Go</button> <!--Change this to change the button label in the app--> |
36 | 35 | </div> |
37 | 36 |
|
38 | 37 | <div id="outputOptions" style="display: none;"> |
39 | | - <h2>Lets customise and Print or Download Your Photo Strip!</h2> |
| 38 | + <h2>Lets customise and Print or Download Your Photo Strip!</h2> <!--Change this to change the title in the app--> |
40 | 39 | <canvas id="photoCanvas"></canvas> |
41 | 40 | <br> |
42 | 41 | <label for="caption">Add Text:</label> |
43 | | - <input type="text" id="caption" placeholder="Enter your amazing caption here"> |
| 42 | + <input type="text" id="caption" placeholder="Enter your amazing caption here"> <!--Change this to change the placeholder in the app--> |
44 | 43 | <br> |
45 | 44 | <button onclick="applyText()">Apply Caption</button> |
46 | 45 | <button onclick="downloadPhoto()">Download</button> |
47 | | - <button onclick="printPhoto()">Print</button> |
48 | | - <button onclick="returnToStart()">Return to Start</button> |
| 46 | + <button onclick="printPhoto()">Print (Using your browser's print dialog</button> <!-- Note: Actual printing functionality may vary by browser and OS, remove this line for not letting users print. --> |
| 47 | + <button onclick="returnToStart()">Start Over</button> |
49 | 48 | </div> |
50 | 49 |
|
51 | 50 | <script src="script.js"></script> |
|
0 commit comments