-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (61 loc) · 1.69 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<title>Twitter Bot - Available</title>
<style>
button {
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container-sm">
<div class="mb-3">
<label for="tweet" class="form-label"
>Tweet</label
>
<textarea
class="form-control"
id="tweet"
rows="3"
></textarea>
<button type="button" class="btn btn-primary">Post tweet</button>
</div>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
crossorigin="anonymous"
></script>
<script>
$("button").on("click", (event) => {
event.preventDefault();
const tweet = $("#tweet").val();
// Post Tweet
$.ajax({
url: "/twitter/message",
method: "POST",
data: {
tweet,
},
})
.then(() => {
alert("Data successfully posted");
console.log("Data successfully posted");
})
.catch((error) => {
alert("Error: ", error);
console.log("Error: ", error);
});
});
</script>
</body>
</html>