-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (27 loc) · 897 Bytes
/
index.php
File metadata and controls
38 lines (27 loc) · 897 Bytes
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
<?php
if (!empty($_POST)) {
require_once 'Telegram.php';
Telegram::sendMessage($_POST['message']);
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Telegram</title>
<meta name="description" content="Send telegram message">
<meta name="author" content="Vilan">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 style="text-align: center; margin: 40px;">Send your message to Telegram VilanTestBot</h1>
<form action="" method="post">
<div style="width: 320px; margin: 30px auto 10px;">
<textarea name="message" rows="5" placeholder="Enter you message here..." style="width: 100%;"></textarea>
</div>
<div style="width: 320px; margin: 0 auto; text-align: center;">
<input type="submit" value="Send message">
</div>
</form>
</body>
</html>