-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathintention_control.html
34 lines (32 loc) · 1.39 KB
/
intention_control.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ServitorConnect 4443</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>ServitorConnect 4443</h1>
<form id="intentionForm" action="start_intention.php" method="POST">
<textarea name="intention" id="intentionInput" rows="5" cols="50" placeholder="Enter your intention here..." required></textarea>
<div class="button-group">
<button type="submit" id="startBtn">Start Intention</button>
<input type="file" id="loadFile" style="display: none;">
<button type="button" id="loadFileBtn">Load File</button>
</div>
<label>
<input type="checkbox" id="repostCheckbox"> Repost every hour
</label>
</form>
<div id="intentionStatus" class="hidden">
<p><b>Your intention is being amplified by the Servitor.<br><br>You submitted the Intention:</b></p>
<p id="submittedIntention"></p>
<button id="stopBtn">Stop Intention</button>
<b><div id="timer" class="timer">00:00:00</div></b> <!-- Timer added -->
</div>
</div>
<script src="intention_control.js"></script>
</body>
</html>